Fix typo in sysvinit chroot.sh script.
git-svn-id: http://emdebian.org/svn/current@7733 563faec7-e20c-0410-992a-a66f704d0ccd
This commit is contained in:
parent
d09c640000
commit
3669f13b11
2 changed files with 7 additions and 1 deletions
6
debian/changelog
vendored
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
|
multistrap (2.1.9) experimental; urgency=low
|
||||||
|
|
||||||
* Allow missing packages lines and add note about using omitdebsrc
|
* 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
|
fi
|
||||||
|
|
||||||
# sysvinit support - exit value of 101 is essential.
|
# 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"
|
echo "sysvinit: Using policy-rc.d to prevent daemons from starting in $TARGET"
|
||||||
mkdir -p $TARGET/usr/sbin/
|
mkdir -p $TARGET/usr/sbin/
|
||||||
cat > $TARGET/usr/sbin/policy-rc.d << EOF
|
cat > $TARGET/usr/sbin/policy-rc.d << EOF
|
||||||
|
|
Loading…
Reference in a new issue