From 8e72f3079bb879c2cf0ef7cb509856a0841ff3c9 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 24 Feb 2022 18:02:06 +0100 Subject: [PATCH] remove cron. We already have update_daemon running as a service --- conf/cron | 1 - scripts/backup | 6 ------ scripts/install | 9 --------- scripts/restore | 7 ------- scripts/upgrade | 4 ---- 5 files changed, 27 deletions(-) delete mode 100644 conf/cron diff --git a/conf/cron b/conf/cron deleted file mode 100644 index 84bed3f..0000000 --- a/conf/cron +++ /dev/null @@ -1 +0,0 @@ -*/30 * * * * /usr/bin/php__PHPVERSION__ __FINALPATH__/update.php --feeds --quiet \ No newline at end of file diff --git a/scripts/backup b/scripts/backup index 719bc83..edae2c2 100644 --- a/scripts/backup +++ b/scripts/backup @@ -58,12 +58,6 @@ ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf" ynh_backup --src_path="/etc/systemd/system/$app.service" -#================================================= -# BACKUP VARIOUS FILES -#================================================= - -ynh_backup --src_path="/etc/cron.d/$app" - #================================================= # BACKUP THE MYSQL DATABASE #================================================= diff --git a/scripts/install b/scripts/install index 7eeff1f..bf91cb3 100644 --- a/scripts/install +++ b/scripts/install @@ -151,15 +151,6 @@ ynh_script_progression --message="Starting a systemd service..." --weight=1 # Start a systemd service ynh_systemd_action --service_name=$app --action="start" -#================================================= -# SETUP A CRON -#================================================= -ynh_script_progression --message="Setuping a cron..." --weight=1 - -ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app" -chown root: "/etc/cron.d/$app" -chmod 644 "/etc/cron.d/$app" - #================================================= # SETUP SSOWAT #================================================= diff --git a/scripts/restore b/scripts/restore index c009a3b..7a5b057 100644 --- a/scripts/restore +++ b/scripts/restore @@ -92,13 +92,6 @@ db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd) ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql -#================================================= -# RESTORE VARIOUS FILES -#================================================= -ynh_script_progression --message="Restoring various files..." --weight=1 - -ynh_restore_file --origin_path="/etc/cron.d/$app" - #================================================= # RESTORE SYSTEMD #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 57799f6..aa23c57 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -82,10 +82,6 @@ if ! ynh_permission_exists --permission="api"; then ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --show_tile="false" --protected="true" fi -# Do not remove the file before the backup, to not fail the backup. -# Remove old cron job -#ynh_secure_remove --file="/etc/cron.d/$app" - #================================================= # CREATE DEDICATED USER #=================================================