From ec86e59367560018aab0ef23701a4e0fc6518d00 Mon Sep 17 00:00:00 2001 From: Lucas Decrock Date: Sat, 2 Feb 2019 19:13:46 +0100 Subject: [PATCH] Update install.sh Fixed cron interval --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 7743b4f..07e9a50 100644 --- a/install.sh +++ b/install.sh @@ -136,7 +136,7 @@ then chmod +s `type -p ping` # Configure cron - crontab -u netweak -l 2>/dev/null | { cat; echo "*\3 * * * * bash /etc/netweak/agent.sh > /etc/netweak/log/cron.log 2>&1"; } | crontab -u netweak - + crontab -u netweak -l 2>/dev/null | { cat; echo "*/3 * * * * bash /etc/netweak/agent.sh > /etc/netweak/log/cron.log 2>&1"; } | crontab -u netweak - # Show success echo -e "|\n| Success: The NetWeak agent has been installed\n|"