summaryrefslogtreecommitdiffstats
path: root/initrd/initrd-stuff/etc/functions
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-06-26 10:40:07 +0200
committerDirk von Suchodoletz2006-06-26 10:40:07 +0200
commitc3443dcaeb85cf64987089607dc5a89517ceb74f (patch)
tree540e7aa9b8606983990f4171aefeb00efe053dbd /initrd/initrd-stuff/etc/functions
parentAdded descriptions, some cleanups, ... (diff)
downloadcore-c3443dcaeb85cf64987089607dc5a89517ceb74f.tar.gz
core-c3443dcaeb85cf64987089607dc5a89517ceb74f.tar.xz
core-c3443dcaeb85cf64987089607dc5a89517ceb74f.zip
Should fix a timing issue, which prevented hwautocfg to see the
completed machine-setup ... git-svn-id: http://svn.openslx.org/svn/openslx/ld4@251 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initrd/initrd-stuff/etc/functions')
-rw-r--r--initrd/initrd-stuff/etc/functions16
1 files changed, 15 insertions, 1 deletions
diff --git a/initrd/initrd-stuff/etc/functions b/initrd/initrd-stuff/etc/functions
index 351a4c6f..7ae7b7e0 100644
--- a/initrd/initrd-stuff/etc/functions
+++ b/initrd/initrd-stuff/etc/functions
@@ -2,7 +2,7 @@
# linux diskless clients (included by init, hwautocfg,
# servconfig, ... within initial ramdisk)
#
-# Author(s): Dirk von Suchodoletz <dirk@goe.net>, 23-06-2006
+# Author(s): Dirk von Suchodoletz <dirk@goe.net>, 26-06-2006
# Felix Endres, 30-04-2006
# Tobias Maier
#
@@ -420,6 +420,20 @@ sed 's/:.*/:!:13078:0:99999:7:::/;/^root.*/d' /tmp/newpasswd \
}
#######################################################################
+# wait for the completion of configuration file (machine-setup). It is
+# composed from different sources
+cfgcomplete () {
+waitfor /tmp/dhcp-done 10000 || error "$error_errdcfg" nonfatal
+waitfor /tmp/file-done 10000 || error "$error_errfcfg" nonfatal
+waitfor /tmp/ldap-done 10000 || error "$error_errlcfg" nonfatal
+# concat the different files now into the central config file, order
+# matters - ldap data has highest priority
+for config in /tmp/confviadhcp /tmp/confviafile /tmp/confvialdap
+ do test -f $config && cat $config >> /etc/machine-setup
+done
+}
+
+#######################################################################
# localization simply derived from $language variable set in
# machine-setup or other sources - mostly taken from knoppix
localization () {