From 2441c96f58f0851618d478586b51af2052230a44 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 14 Feb 2015 09:23:19 +0100 Subject: [PATCH] runit-void: enable udevd in the default runlevel if its service exists. --- srcpkgs/runit-void/INSTALL | 2 ++ srcpkgs/runit-void/template | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/runit-void/INSTALL b/srcpkgs/runit-void/INSTALL index 30fdf67e509..34c5d9f871a 100644 --- a/srcpkgs/runit-void/INSTALL +++ b/srcpkgs/runit-void/INSTALL @@ -2,6 +2,7 @@ case "${ACTION}" in post) # Enable default services: # - agetty-tty[1-4] (default) + # - udevd (default) # - sulogin (single) mkdir -p etc/runit/runsvdir/single ln -sf /etc/sv/sulogin etc/runit/runsvdir/single @@ -10,5 +11,6 @@ post) for f in 1 2 3 4 5 6; do [ -e /etc/sv/agetty-tty${f}/down ] || ln -sf /etc/sv/agetty-tty$f etc/runit/runsvdir/default done + [ -e etc/sv/udevd/run ] && ln -sf /etc/sv/udevd etc/runit/runsvdir/default ;; esac diff --git a/srcpkgs/runit-void/template b/srcpkgs/runit-void/template index f1c719ea1a7..ef9e2575a76 100644 --- a/srcpkgs/runit-void/template +++ b/srcpkgs/runit-void/template @@ -1,6 +1,6 @@ # Template file for 'runit-void' pkgname=runit-void -version=20150202 +version=20150214 revision=1 build_style=gnu-makefile homepage="http://www.voidlinux.eu"