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
|
||||
|
||||
* Initial release, replacing live-package.
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
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>
|
||||
|
||||
* Rewritten live-package.
|
||||
|
|
|
@ -287,12 +287,15 @@ Set_defaults ()
|
|||
fi
|
||||
|
||||
# Setting sysvinit option
|
||||
if [ -z "${LIVE_SYSVINIT}" ] && [ "${LIVE_FLAVOUR}" != "mini" ]
|
||||
if [ -z "${LIVE_SYSVINIT}" ]
|
||||
then
|
||||
if [ "${LIVE_FLAVOUR}" = "mini" ]
|
||||
then
|
||||
LIVE_SYSVINIT="enabled"
|
||||
else
|
||||
LIVE_SYSVINIT="disabled"
|
||||
fi
|
||||
fi
|
||||
|
||||
## config/image
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ Create_lockfile "${LIVE_ROOT}"/.lock
|
|||
# Checking stage file
|
||||
Check_stagefile "${LIVE_ROOT}"/.stage/chroot_sysvinit
|
||||
|
||||
if [ "${LIVE_SYSVINIT}" = "disabled" ]
|
||||
if [ "${LIVE_SYSVINIT}" = "enabled" ]
|
||||
then
|
||||
# Disable all
|
||||
for FILE in "${LIVE_CHROOT}"/etc/init.d/*
|
||||
|
|
Loading…
Reference in New Issue