X-Git-Url: http://git.grml.org/?p=live-boot-grml.git;a=blobdiff_plain;f=hooks%2Flive;h=34d6eab7d317b83cdcfa2b8074d103c9842f4a7f;hp=d87bfe7c68d1e597eb98550d723da173c5921281;hb=25036e427f231bc12aca4aeb19d10226b9290e6d;hpb=12f51bce266fc3c161109a02dc0e9b380980a0c4 diff --git a/hooks/live b/hooks/live index d87bfe7..34d6eab 100755 --- a/hooks/live +++ b/hooks/live @@ -24,6 +24,20 @@ esac # live-boot hook +# Reading configuration file from filesystem +if [ -e /etc/live/boot.conf ] +then + . /etc/live/boot.conf +fi + +if ls /etc/live/boot.conf.d/* > /dev/null 2>&1 +then + for _FILE in /etc/live/boot.conf.d/* + do + . ${_FILE} + done +fi + # Handling live-boot # Configuration @@ -226,3 +240,14 @@ then manual_add_modules iscsi_tcp manual_add_modules crc32c fi + +if [ "${LIVE_DNS}" = "true" ] +then + #copy_exec /lib/libnss_files.so.* /lib # /etc/hosts and /etc/passwd + copy_exec /lib/libnss_dns.so.* /lib # DNS server + #copy_exec /lib/libnss_compat.so.* /lib # /etc/passwd + + # Configuration file - may be needed if /etc/hosts is used. + #mkdir -p $DESTDIR/etc + #cp -p /etc/nsswitch.conf $DESTDIR/etc +fi