Merge branch 'release/v1.0.5'

This commit is contained in:
Sean Wheller 2019-08-08 20:41:59 +02:00
commit a47baa35e4
2 changed files with 37 additions and 0 deletions

18
crontab-off.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
echo "#################################"
echo "# DISABLING CRONTAB #"
echo "#################################"
# Remove existing crontab
echo "Backup existing crontab"
crontab -l > crontab
echo "Removing exiting crontab"
crontab -r
echo "#################################"
echo "# CRONTAB DISABLED #"
echo "#################################"

19
crontab-on.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
echo "####################################"
echo "# ENABLING CRONTAB #"
echo "####################################"
# Get settings
. settings.sh
. functions.sh
sleep 5
# Setup crontab for user
. crontab.sh
sleep 5
echo "####################################"
echo "# CRONTAB ENABLED #"
echo "####################################"