diff options
author | 2012-06-25 17:32:32 +0000 | |
---|---|---|
committer | 2012-06-25 17:32:32 +0000 | |
commit | c64f1e63d7a14cbf56ec08a53177ea63d9aa3d94 (patch) | |
tree | 6620952e5505d5fc24bd990ecb8b1b1659e1f7ff /net-misc/rwbs/files | |
parent | net-misc/italc: Fix for gcc-4.7, #423183 (diff) | |
download | gentoo-2-c64f1e63d7a14cbf56ec08a53177ea63d9aa3d94.tar.gz gentoo-2-c64f1e63d7a14cbf56ec08a53177ea63d9aa3d94.tar.bz2 gentoo-2-c64f1e63d7a14cbf56ec08a53177ea63d9aa3d94.zip |
net-misc/rwbs: Install binary package into /opt, #273330
(Portage version: 2.2.0_alpha112/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'net-misc/rwbs/files')
-rw-r--r-- | net-misc/rwbs/files/rwbs.rc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-misc/rwbs/files/rwbs.rc b/net-misc/rwbs/files/rwbs.rc index 6b39a5663837..b96c69b66d31 100644 --- a/net-misc/rwbs/files/rwbs.rc +++ b/net-misc/rwbs/files/rwbs.rc @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rwbs/files/rwbs.rc,v 1.3 2004/07/15 00:12:06 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rwbs/files/rwbs.rc,v 1.4 2012/06/25 17:32:32 jlec Exp $ depend() { need net @@ -9,13 +9,13 @@ depend() { start() { ebegin "Starting Roger Wilco base station" - start-stop-daemon --start --quiet --exec /usr/bin/rwbs -b \ + start-stop-daemon --start --quiet --exec /opt/bin/rwbs -b \ -- \${RWBS_OPTS} >>/var/log/rwbs 2>&1 eend $? } stop() { ebegin "Stopping Roger Wilco base station" - start-stop-daemon --stop --quiet --exec /usr/bin/rwbs > /dev/null 2>&1 + start-stop-daemon --stop --quiet --exec /opt/bin/rwbs > /dev/null 2>&1 eend $? } |