summaryrefslogtreecommitdiff
path: root/helpers/lh_config
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 10:04:40 +0200
committerDaniel Baumann <daniel@debian.org>2007-09-23 10:04:40 +0200
commit6f5e2da03e5fd1af2200d2f55ca84647bc8d3626 (patch)
treee2a861c1995eea707b2ac1c72930351191714493 /helpers/lh_config
parent9a9491318d4a0469e4c97b28879ab34391c39095 (diff)
downloadvyos-live-build-6f5e2da03e5fd1af2200d2f55ca84647bc8d3626.tar.gz
vyos-live-build-6f5e2da03e5fd1af2200d2f55ca84647bc8d3626.zip
Adding live-package 0.99.22-1.
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-xhelpers/lh_config26
1 files changed, 26 insertions, 0 deletions
diff --git a/helpers/lh_config b/helpers/lh_config
new file mode 100755
index 000000000..a664988c9
--- /dev/null
+++ b/helpers/lh_config
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# lh_config
+
+case "${1}" in
+ disable-daemons)
+ if [ "${LIVE_DAEMONS}" = "no" ]
+ then
+ # Disable all
+ for FILE in "${LIVE_CHROOT}"/etc/init.d/*
+ do
+ lh_chroot "update-rc.d -f `basename ${FILE}` remove"
+ done
+
+ # Re-enable all required (taken from -f standard chroot)
+ for PACKAGE in casper console-common cron dpkg ifupdown initscripts kbd klogd libc6 libdevmapper1.02 libselinux1 libsepol1 login makedev module-init-tools netbase openbsd-inetd procps sudo sysklogd udev util-linux
+ do
+ # Re-configure if existing
+ if [ -f "${LIVE_CHROOT}"/var/lib/dpkg/info/${PACKAGE}.postinst ]
+ then
+ lh_chroot "/var/lib/dpkg/info/${PACKAGE}.postinst configure"
+ fi
+ done
+ fi
+ ;;
+esac