Projet

Général

Profil

Scénario #15412

Mis à jour par Klaas TJEBBES il y a environ 8 ans

Malgré le "case" dans "/etc/init.d/halt" :
<pre>
case "$HALT" in
[Pp]*)
INIT_HALT=POWEROFF
;;
[Hh]*)
INIT_HALT=HALT
;;
*)
INIT_HALT=POWEROFF
;;
esac
</pre>

Le serveur ne s'arrête pas proprement avec manage-eole ou l'EAD.

shutdown -h now , halt -p ,poweroff fonctionnent, on dirait un problème avec /etc/init.d/halt

Ajouter INIT_HALT=POWEROFF dans /etc/default/halt résout le problème. Il faudrait donc templatiser ce fichier.

Retour