Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 259437 Details for
Bug 350172
net-misc/logmein-hamachi-2.0.1.13 - LogMeIn Hamachi VPN tunneling engine
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
logmein-hamachi.initd
logmein-hamachi.initd (text/plain), 1.15 KB, created by
Simone Scanzoni
on 2011-01-10 04:09:28 UTC
(
hide
)
Description:
logmein-hamachi.initd
Filename:
MIME Type:
Creator:
Simone Scanzoni
Created:
2011-01-10 04:09:28 UTC
Size:
1.15 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2011 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 > >DAEMON=/opt/logmein-hamachi/bin/hamachid >PIDFILE=/var/run/logmein-hamachi/hamachid.pid > >start() >{ > # returns > # 0 if daemon has been started > # 1 if daemon was already running > # 2 if daemon could not be started > > ebegin "Starting hamachi" > > start-stop-daemon --quiet --start --exec "${DAEMON}" \ > --pidfile ${PIDFILE} -- -c "${CONFDIR}" > result=$? > > if [ ${result} -eq 0 ]; then > # it fails logging in immediately > sleep ${WAIT} > /usr/bin/hamachi login > if [ -n "${NICKNAME}" ]; then > /usr/bin/hamachi set-nick "${NICKNAME}" > fi > if [ -z "$(/usr/bin/hamachi | grep 'logged in')" ]; then > result=1 > fi > fi > > eend ${result} >} > >stop() >{ > # returns > # 0 if daemon has been stopped > # 1 if daemon was already stopped > # 2 if daemon could not be stopped > # other if a failure occurred > > ebegin "Stopping hamachi" > > /usr/bin/hamachi logout > start-stop-daemon --quiet --stop --exec "${DAEMON}" \ > --pidfile ${PIDFILE} > > eend $? >} > >status() { > service_started "${SVCNAME}" || return 1 > /usr/bin/hamachi > /usr/bin/hamachi list >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 350172
:
258460
|
259435
|
259437
|
259439
|
259443
|
259463
|
259467
|
259485
|
259621
|
259622
|
259945
|
259947
|
259949