Halt won't poweroff

Bug #1003020 reported by moi
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
upstart (Ubuntu)
New
Undecided
Unassigned

Bug Description

I use ubuntu 12.04

The script /etc/init.d/halt will never power off...

First it reads /etc/default/halt which is set by default in Ubuntu to HALT=poweroff

Then it sets a variable INIT_HALT

        if [ "$INIT_HALT" = "" ]
        then
                case "$HALT" in
                  [Pp]*)
                        INIT_HALT=POWEROFF
                        ;;
                  [Hh]*)
                        INIT_HALT=HALT
                        ;;
                  *)
                        INIT_HALT=POWEROFF
                        ;;
                esac
        fi

Then it shutdowns only if INIT_HALT and HALT are different... The only way is to write HALT="" in /etc/default/halt

see code:
        # If INIT_HALT=HALT don't poweroff.
        poweroff="-p"
        if [ "$INIT_HALT" = "HALT" ]
        then
                poweroff=""
        fi

Thus no shutdown possible through halt...

Cheers

Tags: bot-comment
moi (guiguibud)
description: updated
Revision history for this message
Ubuntu Foundations Team Bug Bot (crichton) wrote :

Thank you for taking the time to report this bug and helping to make Ubuntu better. It seems that your bug report is not filed about a specific source package though, rather it is just filed against Ubuntu in general. It is important that bug reports be filed about source packages so that people interested in the package can find the bugs about it. You can find some hints about determining what package your bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage. You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit https://bugs.launchpad.net/ubuntu/+bug/1003020/+editstatus and add the package name in the text box next to the word Package.

[This is an automated message. I apologize if it reached you inappropriately; please just reply to this message indicating so.]

tags: added: bot-comment
moi (guiguibud)
affects: ubuntu → upstart (Ubuntu)
Revision history for this message
Anders Kaseorg (andersk) wrote :

>Then it shutdowns only if INIT_HALT and HALT are different...

You’re misreading that. It says:
  if [ "$INIT_HALT" = "HALT" ]
not:
  if [ "$INIT_HALT" = "$HALT" ]

The symptom, however, is bug 991997.

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.