diff options
author | Brian Evans <grknight@gentoo.org> | 2018-04-08 20:29:39 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-04-08 20:29:39 -0400 |
commit | d1e5e76c53b65228c1831a6f865269a26369edf7 (patch) | |
tree | 8a982ef941199eb5b699a5dfa05ccc97354ea037 /dev-db/maxscale/files/maxscale-init.d | |
parent | dev-php/ZendFramework: Package removal wrt bug 604182 (diff) | |
download | gentoo-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.d | 21 |
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 $? -} - |