From 1bb2648cde916ac27d3dd75d7b64a4ddc89787b7 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 10 Feb 2013 01:12:52 -0800 Subject: Sun Feb 10 01:12:35 PST 2013 --- community/iperf/iperf.conf | 7 ------ community/iperf/iperf.rc | 52 ------------------------------------------- community/iperf/iperf.service | 8 ------- 3 files changed, 67 deletions(-) delete mode 100644 community/iperf/iperf.conf delete mode 100644 community/iperf/iperf.rc delete mode 100644 community/iperf/iperf.service (limited to 'community/iperf') diff --git a/community/iperf/iperf.conf b/community/iperf/iperf.conf deleted file mode 100644 index 0685ff011..000000000 --- a/community/iperf/iperf.conf +++ /dev/null @@ -1,7 +0,0 @@ -# vim:set ts=2 sw=2 ft=sh noet: - -# daemon pid file -#PIDFILE='/run/iperf.pid' - -# daemon options. treated as an array. -#DAEMON_OPTS='--port 5001' diff --git a/community/iperf/iperf.rc b/community/iperf/iperf.rc deleted file mode 100644 index 617b666ad..000000000 --- a/community/iperf/iperf.rc +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash - -# You can use this script to run iperf as tcp and udp. -# Copy and rename this script to /etc/rc.d/iperf-udp and copy config file to -# /etc/conf.d/iperf-udp and add -u to daemon options - -. /etc/rc.conf -. /etc/rc.d/functions -[[ -r /etc/conf.d/${0##*/} ]] && . /etc/conf.d/${0##*/} - -DAEMON=${DAEMON:-/usr/bin/iperf} -PIDFILE=${PIDFILE:-/run/${0##*/}.pid} -DAEMON_OPTS="--server $DAEMON_OPTS" - -# check pid -[[ -r "$PIDFILE" ]] && - read PID < "$PIDFILE" && [[ -n $PID ]] && kill -0 $PID &>/dev/null || unset PID - -case "$1" in - start) - stat_busy "Starting ${0##*/} daemon" - [[ -z $PID ]] && - { $DAEMON $DAEMON_OPTS /dev/null & } && - echo "$!" > "$PIDFILE" && - disown %% && - add_daemon ${0##*/} && - stat_done && - exit 0 - stat_fail - ;; - stop) - stat_busy "Stopping ${0##*/} daemon" - [[ -n $PID ]] && kill $PID &> /dev/null && - rm_daemon ${0##*/} && - rm -f "$PIDFILE" && - stat_done && - exit 0 - stat_fail - ;; - restart) - $0 stop - $0 start - exit 0 - ;; - *) - echo "usage: ${0##*/} {start|stop|restart}" >&2 - ;; -esac - -exit 1 - -# vim:set ts=2 sw=2 ft=sh noet: diff --git a/community/iperf/iperf.service b/community/iperf/iperf.service deleted file mode 100644 index 1bdcf86e9..000000000 --- a/community/iperf/iperf.service +++ /dev/null @@ -1,8 +0,0 @@ -[Unit] -Description=Iperf Server - -[Service] -ExecStart=/usr/bin/iperf -s - -[Install] -WantedBy=multi-user.target -- cgit v1.2.3-54-g00ecf