Grimoire-
Command
.es

GNU+Linux command memo

Cron to schedule computer shutdown on 2023, march the 7th

Utiliser CRON pour programmer l’extinction d’une machine le 7 mars 2023 à minuit.

Il s’agit de plaisanteries, éteindre un server d’entreprise peut être qualifié de faute lourde. Voici les conseils de Solidaire Informatique relatifs au droit de grève ainsi que le tract concernant la grève du 7 mars 2023.

crontab -e

0 0 7 3 * test $(/bin/date +\%Y) = "2023" &&  /sbin/shutdown now >/dev/null 2>&1 (1)
1 The command test … if the current year is 2023 and if so shutdowns the machine

Original idea from Solidaire Informatique : mamot.fr/@SolInfoNat@syndicat.solidaires.org/109952856290917935

# echo "/sbin/shutdown now" | at -t 03070000 (1)
1 Framasky’s version : syndicat.solidaires.org/@framasky@framapiaf.org/109952968598460016