2017-01-28 10:59:40 +01:00
|
|
|
#!/bin/bash
|
2019-02-17 19:30:40 +01:00
|
|
|
|
2024-03-22 22:13:52 +01:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2024-03-23 00:00:04 +01:00
|
|
|
_create_data_dirs_if_required() {
|
|
|
|
dirs=(_data galleries upload)
|
|
|
|
for dir in "${dirs[@]}"; do
|
|
|
|
if [ ! -d "$data_dir/$dir" ]; then
|
|
|
|
rsync -a "$install_dir/$dir/" "$data_dir/$dir/"
|
|
|
|
fi
|
|
|
|
ynh_secure_remove "$install_dir/$dir"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2024-03-22 22:13:52 +01:00
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|