summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-mobilephone/smstools/files/smsd.initd')
-rw-r--r--app-mobilephone/smstools/files/smsd.initd21
1 files changed, 0 insertions, 21 deletions
diff --git a/app-mobilephone/smstools/files/smsd.initd b/app-mobilephone/smstools/files/smsd.initd
deleted file mode 100644
index 31bb9f8bef1e..000000000000
--- a/app-mobilephone/smstools/files/smsd.initd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- need localmount
-}
-
-start() {
- ebegin "Starting smsd"
- start-stop-daemon -b -m -p /var/run/smsd.pid -c smsd:sms --start --exec /usr/bin/smsd -- \
- -c /etc/smsd.conf
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping smsd"
- start-stop-daemon --stop -p /var/run/smsd.pid
- eend ${?}
-}