diff options
| author | Daniel Baumann <daniel@debian.org> | 2010-07-23 16:20:32 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:53:27 +0100 |
| commit | 66d1235abf2dbc4062ed5bb7aef28d99a5a38eb2 (patch) | |
| tree | 378444e7290364f45440790a239ebcb801e43e0a /hooks/live | |
| parent | da460be0437855fb745d0675c78186eba2ab549b (diff) | |
| download | live-boot-66d1235abf2dbc4062ed5bb7aef28d99a5a38eb2.tar.gz live-boot-66d1235abf2dbc4062ed5bb7aef28d99a5a38eb2.zip | |
Adding support for resolving DNS names from initramfs, thanks to Michal Suchanek <hramrach@centrum.cz> for initial patch which this is based on (Closes: #589659).
Diffstat (limited to 'hooks/live')
| -rwxr-xr-x | hooks/live | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -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 |
