summaryrefslogtreecommitdiff
path: root/gnustep-apps/sogo/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /gnustep-apps/sogo/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'gnustep-apps/sogo/files')
-rw-r--r--gnustep-apps/sogo/files/sogod.confd6
-rw-r--r--gnustep-apps/sogo/files/sogod.initd32
2 files changed, 0 insertions, 38 deletions
diff --git a/gnustep-apps/sogo/files/sogod.confd b/gnustep-apps/sogo/files/sogod.confd
deleted file mode 100644
index 906a6978d862..000000000000
--- a/gnustep-apps/sogo/files/sogod.confd
+++ /dev/null
@@ -1,6 +0,0 @@
-# /etc/conf.d/sogod: config file for /etc/init.d/sogod
-
-SOGOD_WORKERS=3
-
-# Additional options for SOGo
-SOGOD_OPTS=""
diff --git a/gnustep-apps/sogo/files/sogod.initd b/gnustep-apps/sogo/files/sogod.initd
deleted file mode 100644
index ad003be62c9b..000000000000
--- a/gnustep-apps/sogo/files/sogod.initd
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-SOGOD_PID=/run/sogo/sogod.pid
-
-depend() {
- need net
- need memcached
- after postgresql mysql
- after slapd
- after mta
-}
-
-start() {
- checkpath -q -d -m 0755 -o sogo:sogo $(dirname "${SOGOD_PID}")
- ebegin "Starting SOGo service"
- start-stop-daemon --start --quiet \
- --user sogo --exec /usr/sbin/sogod \
- -- -WOWorkersCount ${SOGOD_WORKERS} \
- -WOLogFile /var/log/sogo/sogod.log \
- -WOPidFile "${SOGOD_PID}" \
- "${SOGOD_OPTS}"
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping SOGo service"
- start-stop-daemon --stop \
- --pidfile "${SOGOD_PID}"
- eend ${?}
-}