]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/initscripts/sysconfig/firewall.local
initrd: don't remove binary moduldeps.
[people/teissler/ipfire-2.x.git] / src / initscripts / sysconfig / firewall.local
CommitLineData
3a1019f6
MT
1#!/bin/sh
2# Used for private firewall rules
3
4# See how we were called.
5case "$1" in
6 start)
7 ## add your 'start' rules here
8 ;;
9 stop)
10 ## add your 'stop' rules here
11 ;;
12 reload)
13 $0 stop
14 $0 start
15 ## add your 'reload' rules here
16 ;;
17 *)
18 echo "Usage: $0 {start|stop|reload}"
19 ;;
20esac