]> git.ipfire.org Git - people/arne_f/network.git/blame - network
Fix weird device CLI command.
[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
b8357295
MT
41 init)
42 init_run
43 ;;
44
f90e550b 45 config|port|device|zone|start|stop|restart|status|reset)
0a79ea02 46 cli_${action} $@
1848564d
MT
47 ;;
48
fe4555b5 49 ""|help|--help|-h)
1848564d
MT
50 cli_usage root
51 exit ${EXIT_OK}
52 ;;
fe4555b5 53
1848564d 54 *)
fe4555b5 55 error "Invalid command given: ${action}"
1848564d
MT
56 cli_usage usage
57 exit ${EXIT_CONF_ERROR}
fe4555b5 58 ;;
1848564d 59esac