Adding live-helper 1.0~a1-2.
This commit is contained in:
parent
2b43599e46
commit
f6a05f356e
|
@ -1,3 +1,11 @@
|
||||||
|
live-helper (1.0~a1-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* functions/defaults.sh: Fixed setting of LIVE_SYSVINIT.
|
||||||
|
* helpers/lh_chroot_sysvinit: Changed check for LIVE_SYSVINIT from disabled to
|
||||||
|
enabled.
|
||||||
|
|
||||||
|
-- Daniel Baumann <daniel@debian.org> Mon, 12 Mar 2007 18:00:00 +0100
|
||||||
|
|
||||||
live-helper (1.0~a1-1) unstable; urgency=low
|
live-helper (1.0~a1-1) unstable; urgency=low
|
||||||
|
|
||||||
* Initial release, replacing live-package.
|
* Initial release, replacing live-package.
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
|
2007-03-14 Daniel Baumann <daniel@debian.org>
|
||||||
|
|
||||||
|
* functions/defaults.sh: Fixed setting of LIVE_SYSVINIT.
|
||||||
|
* helpers/lh_chroot_sysvinit: Changed check for LIVE_SYSVINIT from disabled to
|
||||||
|
enabled.
|
||||||
|
* Uploaded 1.0~a1-2.
|
||||||
|
|
||||||
2007-03-12 Daniel Baumann <daniel@debian.org>
|
2007-03-12 Daniel Baumann <daniel@debian.org>
|
||||||
|
|
||||||
* Rewritten live-package.
|
* Rewritten live-package.
|
||||||
* Uploaded 1.0~a1-1.
|
* Uploaded 1.0~a1-1.
|
||||||
|
|
|
@ -287,11 +287,14 @@ Set_defaults ()
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Setting sysvinit option
|
# Setting sysvinit option
|
||||||
if [ -z "${LIVE_SYSVINIT}" ] && [ "${LIVE_FLAVOUR}" != "mini" ]
|
if [ -z "${LIVE_SYSVINIT}" ]
|
||||||
then
|
then
|
||||||
LIVE_SYSVINIT="enabled"
|
if [ "${LIVE_FLAVOUR}" = "mini" ]
|
||||||
else
|
then
|
||||||
LIVE_SYSVINIT="disabled"
|
LIVE_SYSVINIT="enabled"
|
||||||
|
else
|
||||||
|
LIVE_SYSVINIT="disabled"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## config/image
|
## config/image
|
||||||
|
|
|
@ -27,7 +27,7 @@ Create_lockfile "${LIVE_ROOT}"/.lock
|
||||||
# Checking stage file
|
# Checking stage file
|
||||||
Check_stagefile "${LIVE_ROOT}"/.stage/chroot_sysvinit
|
Check_stagefile "${LIVE_ROOT}"/.stage/chroot_sysvinit
|
||||||
|
|
||||||
if [ "${LIVE_SYSVINIT}" = "disabled" ]
|
if [ "${LIVE_SYSVINIT}" = "enabled" ]
|
||||||
then
|
then
|
||||||
# Disable all
|
# Disable all
|
||||||
for FILE in "${LIVE_CHROOT}"/etc/init.d/*
|
for FILE in "${LIVE_CHROOT}"/etc/init.d/*
|
||||||
|
|
Loading…
Reference in New Issue