]> git.ipfire.org Git - people/arne_f/network.git/blob - network
network: Add some initialization handlers.
[people/arne_f/network.git] / network
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2010 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 . /lib/network/functions
23
24 # Parse the command line
25 while [ $# -gt 0 ]; do
26 case "${1}" in
27 -d|--debug)
28 DEBUG=1
29 log DEBUG "Enabled debugging mode"
30 ;;
31 *)
32 action=${1}
33 ;;
34 esac
35 shift
36 [ -n "${action}" ] && break
37 done
38
39 # Process the given action
40 case "${action}" in
41 config|port|device|zone|start|stop|restart|status)
42 cli_${action} $@
43 ;;
44
45 ""|help|--help|-h)
46 cli_usage root
47 exit ${EXIT_OK}
48 ;;
49
50 *)
51 error "Invalid command given: ${action}"
52 cli_usage usage
53 exit ${EXIT_CONF_ERROR}
54 ;;
55 esac