Comment 3 for bug 1150737

Revision history for this message
Ben Howard (darkmuggle-deactivatedaccount) wrote : Re: Amazon AMIs fail debsums out of the box

This is a live-build artifact. During installation, livebuild does this little gem to keep things from starting:

        if [ -f chroot/sbin/initctl ]
        then
            # Save initctl file
            mv chroot/sbin/initctl chroot/sbin/initctl.orig
        fi

And then restores it via:
        if [ -f chroot/sbin/initctl.orig ]
        then
            # Restore initctl file
            mv chroot/sbin/initctl.orig chroot/sbin/initctl
        else
            # Remove initctl file
            rm -f chroot/sbin/initctl
        fi