mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
27 lines
783 B
Bash
27 lines
783 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
_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
|
|
}
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|