Update install.sh
This commit is contained in:
parent
53731dfe48
commit
2472fedd82
1 changed files with 11 additions and 6 deletions
17
install.sh
17
install.sh
|
@ -111,19 +111,24 @@ fi
|
|||
|
||||
## Install Crontab
|
||||
|
||||
crontab -l | grep -q '/usr/bin/motds32' && echo 'entry exists' || echo -e "2.\e[92m Cron add ==> \e[0m */5 * * * * /usr/bin/motds32 -g 2>1 \e[92m (generate each 5 minutes)\n" && crontab << FIN
|
||||
$(crontab -l)
|
||||
|
||||
*/5 * * * * /usr/bin/motds32 -g 2>1
|
||||
FIN
|
||||
if crontab -l | grep -q '/usr/bin/motds32'; then
|
||||
echo -e "2.\e[92m Cron localized\n"
|
||||
else
|
||||
echo "*/5 * * * * root /usr/bin/motds32 -g 2>1" | crontab -
|
||||
fi
|
||||
|
||||
#crontab -l | grep -q '/usr/bin/motds32' && echo 'entry exists' || echo -e "2.\e[92m Cron add ==> \e[0m */5 * * * * /usr/bin/motds32 -g 2>1 \e[92m (generate each 5 minutes)\n" && */5 * * * * root /usr/bin/motds32 -g 2>1
|
||||
#crontab << FIN
|
||||
#$(crontab -l)
|
||||
#
|
||||
#*/5 * * * * /usr/bin/motds32 -g 2>1
|
||||
#FIN
|
||||
## todo
|
||||
### MOTDs32 generation (5 min)
|
||||
#/5 * * * * /usr/bin/motds32 -g 2>1
|
||||
###
|
||||
|
||||
|
||||
|
||||
## Generate first stats
|
||||
/usr/bin/motds32 -g
|
||||
|
||||
|
|
Loading…
Reference in a new issue