afficher quand la planification est désactivée
This commit is contained in:
parent
7f426a74b0
commit
33465d757d
|
@ -369,12 +369,18 @@ elif [ "$action" == "list" ]; then
|
|||
ctfiles=("$uscrontab")
|
||||
fi
|
||||
else
|
||||
array_from_lines ctfiles "$(crontab -l 2>/dev/null | awkrun script="$script" '$6 == script { if ($7) print $7; else print "GENERIC" }')"
|
||||
array_from_lines ctfiles "$(crontab -l 2>/dev/null | awkrun script="$script" '$6 == script { if ($7) print $7; else if ($0 ~ /^#/) print "#GENERIC"; else print "GENERIC" }')" #'
|
||||
if array_contains ctfiles "GENERIC"; then
|
||||
# il y a une planification générique
|
||||
array_del ctfiles "GENERIC"
|
||||
set_usercrontabs usercrontabs
|
||||
array_extend ctfiles usercrontabs
|
||||
elif array_contains ctfiles "#GENERIC"; then
|
||||
# il y a une planification générique désactivée
|
||||
array_del ctfiles "#GENERIC"
|
||||
set_usercrontabs usercrontabs
|
||||
array_extend ctfiles usercrontabs
|
||||
ewarn "planification générique désactivée. Vous pouvez la réactiver avec $scriptname -A"
|
||||
elif [ ${#ctfiles[*]} -eq 0 ]; then
|
||||
einfo "aucune planification en cours"
|
||||
set_usercrontabs ctfiles
|
||||
|
|
Loading…
Reference in New Issue