mirror of
https://github.com/YunoHost-Apps/selfoss_ynh.git
synced 2024-09-03 20:16:21 +02:00
cleaning
This commit is contained in:
parent
dbc954464b
commit
37ea59c4d4
2 changed files with 12 additions and 3 deletions
|
@ -49,7 +49,7 @@ ynh_add_nginx_config
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
||||||
|
|
||||||
ynh_add_config --template="../conf/config.ini" --destination="$install_dir/config.ini"
|
ynh_add_config --template="config.ini" --destination="$install_dir/config.ini"
|
||||||
|
|
||||||
chmod 400 "$install_dir/config.ini"
|
chmod 400 "$install_dir/config.ini"
|
||||||
chown $app:$app "$install_dir/config.ini"
|
chown $app:$app "$install_dir/config.ini"
|
||||||
|
@ -59,7 +59,7 @@ chown $app:$app "$install_dir/config.ini"
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Setuping a cron..." --weight=1
|
ynh_script_progression --message="Setuping a cron..." --weight=1
|
||||||
|
|
||||||
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
||||||
chown root: "/etc/cron.d/$app"
|
chown root: "/etc/cron.d/$app"
|
||||||
chmod 644 "/etc/cron.d/$app"
|
chmod 644 "/etc/cron.d/$app"
|
||||||
|
|
||||||
|
|
|
@ -70,11 +70,20 @@ ynh_add_nginx_config
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
||||||
|
|
||||||
ynh_add_config --template="../conf/config.ini" --destination="$install_dir/config.ini"
|
ynh_add_config --template="config.ini" --destination="$install_dir/config.ini"
|
||||||
|
|
||||||
chmod 400 "$install_dir/config.ini"
|
chmod 400 "$install_dir/config.ini"
|
||||||
chown $app:$app "$install_dir/config.ini"
|
chown $app:$app "$install_dir/config.ini"
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# SETUP A CRON
|
||||||
|
#=================================================
|
||||||
|
ynh_script_progression --message="Setuping a cron..." --weight=1
|
||||||
|
|
||||||
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
||||||
|
chown root: "/etc/cron.d/$app"
|
||||||
|
chmod 644 "/etc/cron.d/$app"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# END OF SCRIPT
|
# END OF SCRIPT
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue