From c2254e8b9ea9bc1170438f76344d46817f75e38f Mon Sep 17 00:00:00 2001 From: HGEpro <tstudio2007@gmail.com> Date: Tue, 29 Mar 2022 19:03:51 +0200 Subject: [PATCH] removed sudo from crontab --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index b51dc03..e036b4b 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -65,7 +65,7 @@ if [ $daemon = "y" ]; then echo "The daemon is already in crontab" else echo "Adding the daemon to crontab..." - sudo crontab -l > crontab.tmp + crontab -l > crontab.tmp echo "@reboot /usr/bin/librehomeworkd" >> crontab.tmp crontab crontab.tmp rm crontab.tmp -- GitLab