summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/misterhouse/files')
-rw-r--r--app-misc/misterhouse/files/misterhouse.conf12
-rw-r--r--app-misc/misterhouse/files/misterhouse.init18
2 files changed, 0 insertions, 30 deletions
diff --git a/app-misc/misterhouse/files/misterhouse.conf b/app-misc/misterhouse/files/misterhouse.conf
deleted file mode 100644
index 6b6abbaeb63b..000000000000
--- a/app-misc/misterhouse/files/misterhouse.conf
+++ /dev/null
@@ -1,12 +0,0 @@
-# Config file for /etc/init.d/misterhouse
-
-# NOTICE: This stub file can contains any overrides to the default
-# mh.ini. Anything not listed in here will be pulled from the main
-# mh.ini file.
-
-
-# Disable launching the tk gui - this is being run from init.d after all :)
-tk=0
-
-# Override the pid file location
-pid_file=/var/run/misterhouse.pid
diff --git a/app-misc/misterhouse/files/misterhouse.init b/app-misc/misterhouse/files/misterhouse.init
deleted file mode 100644
index e2a8b73f9405..000000000000
--- a/app-misc/misterhouse/files/misterhouse.init
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/sbin/openrc-run
-
-depend() {
- need clock hostname net
-}
-
-start() {
- export mh_parms="/etc/conf.d/misterhouse"
- ebegin "Starting misterhouse"
- start-stop-daemon --start --background --exec /opt/misterhouse/bin/mh -- -log_file="/var/log/misterhouse.log"
- eend $? "Failed to start misterhouse"
-}
-
-stop() {
- ebegin "Stopping misterhouse"
- start-stop-daemon --stop --quiet --pidfile /var/run/misterhouse.pid
- eend $? "Failed to stop misterhouse"
-}