diff options
author | Igor Ulyanov <disinbox@gmail.com> | 2022-03-13 09:49:32 +0300 |
---|---|---|
committer | Igor Ulyanov <disinbox@gmail.com> | 2022-03-13 09:54:45 +0300 |
commit | d626a8059d1f0000a346b41b0e0ebbc98d3fdf43 (patch) | |
tree | b16194d5bde40b37f321934e2bcfdbf9d86f2403 /net-misc/xupnpd/files/xupnpd.init | |
parent | scikits_image 0.17.2 added (diff) | |
download | displacer-d626a8059d1f0000a346b41b0e0ebbc98d3fdf43.tar.gz displacer-d626a8059d1f0000a346b41b0e0ebbc98d3fdf43.tar.bz2 displacer-d626a8059d1f0000a346b41b0e0ebbc98d3fdf43.zip |
removed outdated ebuilds
Signed-off-by: Igor Ulyanov <disinbox@gmail.com>
Diffstat (limited to 'net-misc/xupnpd/files/xupnpd.init')
-rw-r--r-- | net-misc/xupnpd/files/xupnpd.init | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/net-misc/xupnpd/files/xupnpd.init b/net-misc/xupnpd/files/xupnpd.init deleted file mode 100644 index 704b411..0000000 --- a/net-misc/xupnpd/files/xupnpd.init +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later - -depend() { - need localmount net - after bootmisc - use logger -} - -start() { - ebegin "Starting ${SVCNAME}" - start-stop-daemon --start --exec /usr/bin/xupnpd \ - --pidfile /var/run/xupnpd.pid \ - -e XUPNPDROOTDIR=/usr/share/xupnpd - eend $? -} - -stop() { - ebegin "Stopping ${SVCNAME}" - start-stop-daemon --stop --exec /usr/bin/xupnpd \ - --pidfile /var/run/xupnpd.pid \ - eend $? -} - |