diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-07-13 21:14:12 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-07-13 22:55:04 +0200 |
commit | 44c8a6eaceb96243e64b4f473b73d2972962cb36 (patch) | |
tree | 3703a5a7d8dc581291db32f3dfcb0b6e67e9303c /net-misc/ices/files/ices.initd | |
parent | net-misc/ices: migrate to GLEP 81 (diff) | |
download | gentoo-44c8a6eaceb96243e64b4f473b73d2972962cb36.tar.gz gentoo-44c8a6eaceb96243e64b4f473b73d2972962cb36.tar.bz2 gentoo-44c8a6eaceb96243e64b4f473b73d2972962cb36.zip |
net-misc/ices: drop old version
Closes: https://bugs.gentoo.org/781419
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc/ices/files/ices.initd')
-rw-r--r-- | net-misc/ices/files/ices.initd | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/net-misc/ices/files/ices.initd b/net-misc/ices/files/ices.initd deleted file mode 100644 index ada3b4943e28..000000000000 --- a/net-misc/ices/files/ices.initd +++ /dev/null @@ -1,17 +0,0 @@ -#!/sbin/openrc-run - -depend() { - need net -} - -start() { - ebegin "Starting IceS 2" - start-stop-daemon --background --start --pidfile /var/run/ices.pid --make-pidfile --exec /usr/bin/ices /etc/ices2/ices.xml - eend $? -} - -stop() { - ebegin "Stopping IceS 2" - start-stop-daemon --stop --pidfile /var/run/ices.pid --name ices - eend $? -} |