summaryrefslogtreecommitdiff
path: root/repo/util/lvm2/dmeventd.initd
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-27 18:34:26 +0100
committerdavidovski <david@davidovski.xyz>2022-05-27 18:34:26 +0100
commit4615385d6c8203001962a7a31dd02cdb1a73544b (patch)
tree0ff0ea93838f9c39ee5a09066ad05d9567e31437 /repo/util/lvm2/dmeventd.initd
parent7b0628f037dcbf85cfb381d5e05dea39a2059d33 (diff)
added tor
Diffstat (limited to 'repo/util/lvm2/dmeventd.initd')
-rw-r--r--repo/util/lvm2/dmeventd.initd26
1 files changed, 0 insertions, 26 deletions
diff --git a/repo/util/lvm2/dmeventd.initd b/repo/util/lvm2/dmeventd.initd
deleted file mode 100644
index c46f8ba..0000000
--- a/repo/util/lvm2/dmeventd.initd
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1,v 1.3 2014/02/08 21:17:46 robbat2 Exp $
-
-PIDFILE=/run/dmeventd.pid
-BIN=/sbin/dmeventd
-
-depend() {
- # As of .67-r1, we call ALL lvm start/stop scripts with --sysinit, that
- # means dmeventd is NOT notified, as it cannot be safely running
- after lvm device-mapper
-}
-
-start() {
- ebegin "Starting dmeventd"
- start-stop-daemon --start --exec $BIN --pidfile $PIDFILE
- eend $?
-}
-
-stop() {
- ebegin "Stopping dmeventd"
- start-stop-daemon --stop --exec $BIN --pidfile $PIDFILE
- eend $?
-}
-