summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2018-04-08 20:29:39 -0400
committerBrian Evans <grknight@gentoo.org>2018-04-08 20:29:39 -0400
commitd1e5e76c53b65228c1831a6f865269a26369edf7 (patch)
tree8a982ef941199eb5b699a5dfa05ccc97354ea037 /dev-db/maxscale/files/maxscale-init.d
parentdev-php/ZendFramework: Package removal wrt bug 604182 (diff)
downloadgentoo-d1e5e76c53b65228c1831a6f865269a26369edf7.tar.gz
gentoo-d1e5e76c53b65228c1831a6f865269a26369edf7.tar.bz2
gentoo-d1e5e76c53b65228c1831a6f865269a26369edf7.zip
dev-db/maxscale: Package removal wrt bug 649764
Closes: https://bugs.gentoo.org/649764
Diffstat (limited to 'dev-db/maxscale/files/maxscale-init.d')
-rw-r--r--dev-db/maxscale/files/maxscale-init.d21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-db/maxscale/files/maxscale-init.d b/dev-db/maxscale/files/maxscale-init.d
deleted file mode 100644
index 1eaa046aefe9..000000000000
--- a/dev-db/maxscale/files/maxscale-init.d
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-
-command=/usr/bin/maxscale
-command_args="-U maxscale -P /run/maxscale"
-name="MaxScale database proxy"
-pidfile="/run/maxscale/maxscale.pid"
-
-description="MaxScale provides database specific proxy functionality"
-extra_started_commands="reload"
-
-start_pre() {
- checkpath -D -o maxscale:maxscale /run/maxscale
-}
-
-reload()
-{
- ebegin "Reloading ${name}"
- pkill -HUP -F /run/maxscale/maxscale.pid
- eend $?
-}
-