source: hybrid/branches/releng-9/nanobsd/files/etc/rc.d/iperf@ 12334

Last change on this file since 12334 was 12334, checked in by rick, 12 years ago

Make sure iperf daemon is started by default.

  • Property svn:executable set to *
File size: 640 bytes
Line 
1#!/bin/sh
2#
3# PROVIDE: iperf
4# BEFORE: DAEMON
5# KEYWORD: shutdown
6#
7# Add the following line to /etc/rc.conf to enable iperf in server mode:
8#
9# iperf_enable="YES"
10#
11. /etc/rc.subr
12
13name=iperf
14rcvar=`set_rcvar`
15
16#command=/usr/local/bin/iperf
17#command_args="-s -D"
18
19load_rc_config ${name}
20
21iperf_enable=${iperf_enable-"NO"}
22
23####
24# iperf does not generate a pid file
25# iperf_pidfile=${iperf_pidfile-"/var/run/.pid"}
26# pidfile="${iperf_pidfile}"
27
28# Quick to start iperf in deamon mode and make sure logfiles get writting in
29# parseable way
30start_cmd="sh -c 'iperf -s -D -y c 1>>/var/log/iperf.log 2>>/var/log/iperf.log'"
31
32run_rc_command "$1"
Note: See TracBrowser for help on using the repository browser.