New dracut module helper to enable runit services.

This commit is contained in:
Juan RP 2014-12-02 21:03:58 +01:00
parent 6847c606fb
commit ca99f9f5bb
2 changed files with 30 additions and 0 deletions

View File

@ -18,4 +18,5 @@ install() {
inst_hook pre-pivot 02 "$moddir/display-manager-autologin.sh"
inst_hook pre-pivot 03 "$moddir/copy-initramfs.sh"
inst_hook pre-pivot 04 "$moddir/locale.sh"
inst_hook pre-pivot 05 "$moddir/services.sh"
}

29
dracut/services.sh Normal file
View File

@ -0,0 +1,29 @@
#!/bin/sh
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
SERVICEDIR=$NEWROOT/etc/sv/
SERVICES="$(getarg live.services)"
for f in ${SERVICES}; do
ln -s /etc/sv/$f $NEWROOT/etc/runit/runsvdir/default/
done
dhcpcd=1
for f in connmand NetworkManager wicd; do
if [ -e $SERVICEDIR/$f ]; then
unset dhcpcd
fi
done
# Enable all services by default... with some exceptions.
for f in $SERVICEDIR/*; do
_service=${f##*/}
case "${_service}" in
agetty-console|sulogin|dhcpcd-*) ;; # ignored
dhcpcd) [ -n "$dhcpcd" ] && ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
*) ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
esac
done