From 85f2a72d9186a8a9aa7baa28ab93fddd5d02faea Mon Sep 17 00:00:00 2001 From: JimboJoe Date: Sun, 18 Sep 2016 18:31:50 +0200 Subject: [PATCH] Restore: Fix cron config file path (#3) Fix the cron config file path (conf instead of config) --- scripts/restore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/restore b/scripts/restore index b353f96..39d540f 100755 --- a/scripts/restore +++ b/scripts/restore @@ -79,7 +79,7 @@ sudo cp -a ./conf/nginx.conf "$nginx_conf" sudo cp -a ./conf/php-fpm.conf "$phpfpm_conf" # Restore cron job -sudo cp -a ./config/cron "/etc/cron.d/${app}" +sudo cp -a ./conf/cron "/etc/cron.d/${app}" # Reload services sudo service php5-fpm restart || true