Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 185275 Details for
Bug 262765
net-misc/nstx: init scripts, qa fixes, enhancements
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
corrected error in nstxd init script, whoops
nstxd.init (text/plain), 2.24 KB, created by
Steve Brudenell
on 2009-03-17 04:55:01 UTC
(
hide
)
Description:
corrected error in nstxd init script, whoops
Filename:
MIME Type:
Creator:
Steve Brudenell
Created:
2009-03-17 04:55:01 UTC
Size:
2.24 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2006 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># (Written by Phillip Berndt <phillip.berndt at gmail dot com>) ># (Modified by Steven Brudenell <steven dot brudenell at gmail>) ># $Header: $ > >depend() { > if [ ! -z "${BIND_INTERFACE}" ] ; then > if [ -x /etc/init.d/net.${BIND_INTERFACE} ] ; then > need net.${BIND_INTERFACE} > fi > fi > > # If the user set TUNTAP_INTERFACE, they probably have a net script > # configuring that interface. nstxcd is responsible for actually creating > # the stupid thing, so we need to run before the config. > if [ ! -z "${TUNTAP_INTERFACE}" ] ; then > if [ -x /etc/init.d/net.${TUNTAP_INTERFACE} ] ; then > before net.${TUNTAP_INTERFACE} > fi > fi >} > >loadtun() { > if [ ! -e /dev/net/tun ] > then > ebegin "Loading TUN/TAP kernel module" > modprobe tun > eend $? > fi > > if [ ! -e /dev/net/tun ] > then > eend 1 "Failed to load TUN driver! (did you compile your kernel with TUN/TAP support?)" > return 1 > fi > > return 0 >} > >checkconfig() { > if [ -z "${DOMAIN}" ] ; then > eerror "DOMAIN must be set" > return 1 > fi > > [ -z "${TUNTAP_INTERFACE}" ] || NSTXD_OPTS="${NSTXD_OPTS} -I ${TUNTAP_INTERFACE}" > [ -z "${TUNTAP_DEVICE}" ] || NSTXD_OPTS="${NSTXD_OPTS} -d ${TUNTAP_DEVICE}" > [ -z "${BIND_INTERFACE}" ] || NSTXD_OPTS="${NSTXD_OPTS} -i ${BIND_INTERFACE}" > [ -z "${CHROOT}" ] || NSTXD_OPTS="${NSTXD_OPTS} -C ${CHROOT}" > [ -z "${NSTXD_USER}" ] || NSTXD_OPTS="${NSTXD_OPTS} -u ${NSTXD_USER}" > > case "${MODE}" in > TUN) > NSTXD_OPTS="${NSTXD_OPTS} -t" > ;; > TAP) > NSTXD_OPTS="${NSTXD_OPTS} -T" > ;; > *) > eerror "MODE must be either TUN or TAP" > return 1 > ;; > esac >} > >start() { > checkconfig || return 1 > > loadtun || return 1 > > ebegin "Starting nstxd" > > start-stop-daemon \ > --start \ > --background \ > --make-pidfile \ > --exec /usr/sbin/nstxd \ > --pidfile "/var/run/nstxd.pid" \ > -- ${NSTXD_OPTS} ${DOMAIN} > > eend $? >} > >stop() { > ebegin "Stopping nstxd" > > start-stop-daemon \ > --stop \ > --exec /usr/sbin/nstxd \ > --pidfile "/var/run/nstxd.pid" > > eend $? >}
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 262765
:
185257
|
185259
|
185261
|
185262
|
185264
|
185266
|
185267
|
185268
|
185269
|
185271
| 185275