summaryrefslogtreecommitdiff
path: root/community/arptables/arptables.systemd
blob: bc5acdbcf2be12c230e93720ecf3efd9bbcc2c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

. /etc/conf.d/arptables

case $1 in
  start)
    arptables-restore < "$CONFIG_FILE"
  ;;
  stop)
    [[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save
    arptables-restore < /dev/null
  ;;
  save)
    arptables-save > "$CONFIG_FILE"
  ;;
  *)
    echo "usage: ${0##*/} {start|stop|save}" >&2
    exit 1
  ;;
esac

# vim:set ts=2 sw=2 ft=sh et: