aboutsummaryrefslogtreecommitdiffstats
path: root/testing/mdevd/mdevd.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mdevd/mdevd.initd')
-rw-r--r--testing/mdevd/mdevd.initd38
1 files changed, 0 insertions, 38 deletions
diff --git a/testing/mdevd/mdevd.initd b/testing/mdevd/mdevd.initd
deleted file mode 100644
index 4e2bdd487d4..00000000000
--- a/testing/mdevd/mdevd.initd
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/sbin/openrc-run
-
-extra_started_commands="reload"
-description="A netlink-listening device manager similar to mdev"
-description_reload="Reload the configuration file"
-
-: ${cfgfile:="/etc/mdev.conf"}
-: ${logfile:="/var/log/$RC_SVCNAME.log"}
-
-pidfile="/run/$RC_SVCNAME.pid"
-required_files="$cfgfile"
-
-command="/bin/mdevd"
-command_args="-C -O4 -f $cfgfile ${command_args:-}"
-command_background="yes"
-start_stop_daemon_args="--stdout $logfile --stderr $logfile"
-supervise_daemon_args="$start_stop_daemon_args"
-
-depend() {
- provide dev
- need sysfs dev-mount
- before checkfs fsck
- keyword -containers -lxc -vserver
-}
-
-start_pre() {
- mkdir -p /dev
-}
-
-reload() {
- ebegin "Reloading $name configuration"
- if [ "$supervisor" ]; then
- $supervisor "$RC_SVCNAME" --signal HUP
- else
- start-stop-daemon --signal HUP --pidfile "$pidfile"
- fi
- eend $?
-}