summaryrefslogtreecommitdiff
path: root/sys-auth/elogind/files/elogind.init
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-06-03 17:17:15 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-06-03 17:17:15 +0100
commitef4b930bd93d8badc6115d167318af2211c3b90f (patch)
treebde3cec71ff6db9a662a937f67bb3109536e2a96 /sys-auth/elogind/files/elogind.init
parentb37385361286b4381ed6649ba8679588a3ce5bc1 (diff)
sys-auth/elogind : version bump
Diffstat (limited to 'sys-auth/elogind/files/elogind.init')
-rw-r--r--sys-auth/elogind/files/elogind.init25
1 files changed, 0 insertions, 25 deletions
diff --git a/sys-auth/elogind/files/elogind.init b/sys-auth/elogind/files/elogind.init
deleted file mode 100644
index 019c3afb..00000000
--- a/sys-auth/elogind/files/elogind.init
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need dbus
-
- # Make sure elogind is up before xdm starts any dm
- before xdm
-}
-
-start() {
- ebegin "Starting elogind"
-
- start-stop-daemon --start --quiet \
- --pidfile "${ELOGIND_PIDFILE}" \
- --exec "${ELOGIND_EXEC}" -- --daemon
- eend $?
-}
-
-stop() {
- ebegin "Stopping elogind"
- start-stop-daemon --stop --quiet --pidfile "${ELOGIND_PIDFILE}"
- eend $?
-}