From: Michael Tremer Date: Sun, 5 Oct 2008 19:59:03 +0000 (+0000) Subject: Made some improvements in installation of the initscripts. X-Git-Tag: v3.0-alpha1~602 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9af97c9c52495324faf09edc8d16a1efe5b7bb2f;p=ipfire-3.x.git Made some improvements in installation of the initscripts. --- diff --git a/lfs/initscripts b/lfs/initscripts index e16ed4c95..2afc7f318 100644 --- a/lfs/initscripts +++ b/lfs/initscripts @@ -32,6 +32,34 @@ DIR_APP = $(DIR_SOURCE)/$(THISAPP) TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) +SCRIPTS = \ + checkfs \ + cleanfs \ + console \ + dhcp \ + fcron \ + haldaemon \ + halt \ + localnet \ + messagebus \ + mISDN \ + modules \ + mountfs \ + mountkernfs \ + network \ + ntpd \ + openldap \ + random \ + reboot \ + sendsignals \ + setclock \ + sshd \ + swap \ + sysctl \ + sysklogd \ + udev \ + udev_retry + ############################################################################### # Top-level Rules ############################################################################### @@ -69,7 +97,9 @@ $(TARGET) : install -m 644 $(DIR_APP)/lsb/manage-functions /lib/lsb/ install -m 644 $(DIR_APP)/etc/lsb-config /etc/lsb/ - cd /etc/init.d && find . -type f -exec install_initd {} \; + cd /etc/init.d && for i in $(SCRIPTS); do \ + sleep 1; install_initd $$i; \ + done for i in $(DIR_SRC)/src/initscripts/sysconfig/*; do \ install -v -m 644 $$i /etc/sysconfig/; \