12 lines
369 B
Bash
Executable file
12 lines
369 B
Bash
Executable file
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: firewall
|
|
# Required-Start: $remote_fs $syslog
|
|
# Required-Stop: $remote_fs $syslog
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: IPv4 Firewall
|
|
# Description: Firewall for IPv4 interfaces.
|
|
### END INIT INFO
|
|
|
|
exec /usr/bin/python /usr/scripts/gestion/gen_confs/firewall4.py $*
|