From aa1a47474da3d734dc492d6cbbdc71787840479a Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 11 Feb 2020 15:34:43 +0100 Subject: [PATCH] Fix name --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 290399e..63f98d3 100644 --- a/fabfile.py +++ b/fabfile.py @@ -32,7 +32,7 @@ def dailycron(c): print('Copy over new crontab ...') # See https://github.com/fabric/fabric/issues/1750 c.put('./bin/voicegardens-cron-daily', remote='./') - c.sudo('mv voicegardens /etc/cron.daily') + c.sudo('mv voicegardens-cron-daily /etc/cron.daily') c.sudo('chown root:root /etc/cron.daily/voicegardens-cron-daily') print('New cron in place <3')