source: hybrid/trunk/nanobsd/files/usr/local/etc/rc.d/inet@ 10136

Last change on this file since 10136 was 10136, checked in by richardvm, 13 years ago

domme toevoeging van proxy files

  • Property svn:executable set to *
File size: 459 bytes
Line 
1#!/bin/sh
2#
3# PROVIDE: inet
4# BEFORE: LOGIN
5# KEYWORD: shutdown
6#
7# Add the following line to /etc/rc.conf to enable inet/lvrouted:
8#
9# Don't enable lvrouted yet
10#
11# inet_enable="YES"
12#
13. /etc/rc.subr
14
15name=inet
16rcvar=`set_rcvar`
17
18command_interpreter=/bin/sh
19command=/usr/local/sbin/inet
20command_args="&"
21
22load_rc_config ${name}
23
24inet_enable=${inet_enable-"NO"}
25inet_pidfile=${inet_pidfile-"/var/run/inet.pid"}
26pidfile="${inet_pidfile}"
27
28run_rc_command "$1"
29
Note: See TracBrowser for help on using the repository browser.