Fix typo in sysvinit chroot.sh script.

git-svn-id: http://emdebian.org/svn/current@7733 563faec7-e20c-0410-992a-a66f704d0ccd
main
codehelp 13 years ago
parent d09c640000
commit 3669f13b11

6
debian/changelog vendored

@ -1,3 +1,9 @@
multistrap (2.1.10) experimental; urgency=low
* Fix typo in sysvinit chroot.sh script.
-- Neil Williams <codehelp@debian.org> Tue, 01 Feb 2011 22:09:40 +0000
multistrap (2.1.9) experimental; urgency=low
* Allow missing packages lines and add note about using omitdebsrc

@ -29,7 +29,7 @@ echo \"Warning: Fake initctl called, doing nothing\"" > "$TARGET/sbin/initctl"
fi
# sysvinit support - exit value of 101 is essential.
if [ -x "$TARGET/sbin/init" && ! -f "$TARGET/usr/sbin/policy-rc.d" ]; then
if [ -x "$TARGET/sbin/init" -a ! -f "$TARGET/usr/sbin/policy-rc.d" ]; then
echo "sysvinit: Using policy-rc.d to prevent daemons from starting in $TARGET"
mkdir -p $TARGET/usr/sbin/
cat > $TARGET/usr/sbin/policy-rc.d << EOF

Loading…
Cancel
Save