blob: a845449fe15a0edd0e5d85c869d466dbd1720ff9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/conf.d/${0##*/}
case "$1" in
start)
stat_busy 'Loading ebtables rules'
ebtables-restore < "$CONFIG_FILE" &&
add_daemon ${0##*/} && stat_done || stat_die
;;
stop)
[[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save
status 'Clearing ebtables rules' ebtables -F && rm_daemon ${0##*/} || exit 1
;;
restart)
$0 stop
$0 start
;;
save)
stat_busy 'Saving ebtables rules'
ebtables-save > "$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:
|