Explorar el Código
make crontab quite
Let's make crontab a little quiet here, unless for those who set up mail for crontab error handling will be disturbed every few minutes.
pull/416/head
Petrus
hace 4 años
committed by
GitHub
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23
Se han
modificado 1 ficheros con
1 adiciones y
1 borrados
-
bin/mw
|
|
@@ -291,7 +291,7 @@ choosecron() { ! pgrep cron >/dev/null && echo "No cron manager running. Install |
|
|
|
read -r minnum |
|
|
|
printf "\033[0m" |
|
|
|
done |
|
|
|
(crontab -l; echo "*/$minnum * * * * $(type mailsync | cut -d' ' -f3)") | crontab - && |
|
|
|
(crontab -l; echo "*/$minnum * * * * $(type mailsync | cut -d' ' -f3)") >/dev/null | crontab - && |
|
|
|
echo "Cronjob added. Mail will sync every $minnum minutes. Be sure you have your cron manager running." |
|
|
|
fi ;} |
|
|
|
|
|
|
|