X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage2%2Fpkg%2Fsysvinit;h=38229b149420781b6252dddebfabe561501afd67;hb=362292f8b7f808d3e7d8742fff2b2cdec0a4b171;hp=853c904849d78f1cb6c09121c07332cc35538848;hpb=3a7685561df0a4d80e727e5b26fbf413ad0586f2;p=hvlinux.git diff --git a/stage2/pkg/sysvinit b/stage2/pkg/sysvinit index 853c904..38229b1 100644 --- a/stage2/pkg/sysvinit +++ b/stage2/pkg/sysvinit @@ -1,29 +1,8 @@ #!/bin/bash -hvconfig_pre() -{ - cd ${LFS_TMP}/${PACKAGE} - - sed -i 's@Sending processes@& configured via /etc/inittab@g' src/init.c - - # A maintained version of the wall program was installed earlier by - # Util-linux-ng. Suppress the installation of Sysvinit's version: - sed -i -e 's/utmpdump wall/utmpdump/' \ - -e 's/mountpoint.1 wall.1/mountpoint.1/' src/Makefile -} - -hvbuild() -{ - make -j ${MAKEJOBS} -C src - make -C src install -} - hvbuild_post() { chown root:shutdown /sbin/{halt,poweroff,reboot,shutdown} chmod 750 /sbin/{halt,poweroff,reboot,shutdown} chmod u+s /sbin/{halt,poweroff,reboot,shutdown} - - # Il faut ajouter l'usager régulier au groupe shutdown. - gpasswd -a ${REGUSER} shutdown }