summaryrefslogtreecommitdiff
path: root/community/ipvsadm/ipvsadm.rc
diff options
context:
space:
mode:
Diffstat (limited to 'community/ipvsadm/ipvsadm.rc')
-rw-r--r--community/ipvsadm/ipvsadm.rc31
1 files changed, 0 insertions, 31 deletions
diff --git a/community/ipvsadm/ipvsadm.rc b/community/ipvsadm/ipvsadm.rc
deleted file mode 100644
index b810dcd62..000000000
--- a/community/ipvsadm/ipvsadm.rc
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/conf.d/${0##*/}
-
-case "$1" in
- start)
- stat_busy 'Loading IPVS table'
- ipvsadm-restore < "$CONFIG_FILE" &&
- add_daemon ${0##*/} && stat_done || stat_die
- ;;
- stop)
- [[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save
- stat_busy 'Clearing IPVS table'
- ipvsadm -C && rm_daemon ${0##*/} && stat_done || stat_die
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- save)
- stat_busy 'Saving IPVS table'
- ipvsadm-save -n > "$CONFIG_FILE" && stat_done || stat_die
- ;;
- *)
- echo "usage: ${0##*/} {start|stop|restart|save}" >&2
- exit 1
-esac
-
-# vim:set ts=2 sw=2 ft=sh et: