From e0ee66872824c1a060e05fb9d9faa855a5d75a97 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 19 Feb 2020 22:28:09 +0100 Subject: [PATCH] Fix path --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 44504a5..a6ba81c 100644 --- a/fabfile.py +++ b/fabfile.py @@ -43,7 +43,7 @@ def hourlycron(c): # See https://github.com/fabric/fabric/issues/1750 c.put('./bin/voicegardens-cron-hourly', remote='./') c.sudo('mv voicegardens-cron-hourly /etc/cron.hourly') - c.sudo('chown root:root /etc/cron.daily/voicegardens-cron-hourly') + c.sudo('chown root:root /etc/cron.hourly/voicegardens-cron-hourly') print('New hourly cron in place <3') @task