]> git.ipfire.org Git - people/arne_f/network.git/blame - network
network: Update codebase.
[people/arne_f/network.git] / network
CommitLineData
5b20e43a
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
1848564d 5# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
5b20e43a
MT
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
1848564d 22. /lib/network/functions
5b20e43a 23
1848564d
MT
24# Parse the command line
25while [ $# -gt 0 ]; do
26 case "${1}" in
27 -d|--debug)
28 DEBUG=1
29 log DEBUG "Enabled debugging mode"
5b20e43a 30 ;;
1848564d
MT
31 *)
32 action=${1}
5b20e43a 33 ;;
5b20e43a 34 esac
5b20e43a 35 shift
1848564d 36 [ -n "${action}" ] && break
5b20e43a
MT
37done
38
1848564d
MT
39# Process the given action
40case "${action}" in
41 config)
42 cli_config $@
43 ;;
44
45 device)
46 cli_device $@
47 ;;
48
49 zone)
50 cli_zone $@
51 ;;
52
53 start)
54 cli_start $@
55 ;;
56
57 stop)
58 cli_stop $@
59 ;;
60
61 show)
62 cli_show $@
63 ;;
64
65 ""|help)
66 cli_usage root
67 exit ${EXIT_OK}
68 ;;
69 *)
70 error "Invalid command given."
71 cli_usage usage
72 exit ${EXIT_CONF_ERROR}
73esac