]> git.ipfire.org Git - people/stevee/network.git/blame - src/hooks/configs/ipv4-dhcp
Remove the function keyword which is a bashism
[people/stevee/network.git] / src / hooks / configs / ipv4-dhcp
CommitLineData
e9ea243e
MT
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
f41fa3d7 22. /usr/lib/network/header-config
e9ea243e
MT
23
24HOOK_SETTINGS="HOOK DELAY"
25
26# Default settings.
27DELAY=0
28
1c6a4e30 29hook_check() {
e9ea243e
MT
30 assert isset DELAY
31 assert isinteger DELAY
32}
33
1c6a4e30 34hook_create() {
e9ea243e
MT
35 local zone=${1}
36 shift
37
38 while [ $# -gt 0 ]; do
39 case "${1}" in
40 --delay=*)
41 DELAY=${1#--delay=}
42 ;;
43 esac
44 shift
45 done
46
e9df08ad 47 zone_config_settings_write "${zone}" "${HOOK}" ${HOOK_SETTINGS}
e9ea243e
MT
48
49 exit ${EXIT_OK}
50}
51
1c6a4e30 52hook_up() {
e9ea243e
MT
53 local zone=${1}
54 local config=${2}
55 shift 2
56
57 if ! device_exists ${zone}; then
58 error "Zone '${zone}' doesn't exist."
59 exit ${EXIT_ERROR}
60 fi
61
62 # Start dhclient for IPv4 on this zone.
63 dhclient_start ${zone} ipv4
64
65 exit ${EXIT_OK}
66}
67
1c6a4e30 68hook_down() {
e9ea243e
MT
69 local zone=${1}
70 local config=${2}
71 shift 2
72
73 if ! device_exists ${zone}; then
74 error "Zone '${zone}' doesn't exist."
75 exit ${EXIT_ERROR}
76 fi
77
78 # Stop dhclient for IPv4 on this zone.
79 dhclient_stop ${zone} ipv4
80
81 exit ${EXIT_OK}
82}
83
1c6a4e30 84hook_status() {
e9ea243e
MT
85 local zone=${1}
86 local config=${2}
87 shift 2
88
89 if ! device_exists ${zone}; then
90 error "Zone '${zone}' doesn't exist."
91 exit ${EXIT_ERROR}
92 fi
e9df08ad
MT
93
94 zone_config_settings_read "${zone}" "${config}" ${HOOK_SETTINGS}
e9ea243e 95
8e3508ac
MT
96 local status
97 if dhclient_status ${zone} ipv4; then
98 status="${MSG_HOOK_UP}"
e9ea243e 99 else
8e3508ac 100 status="${MSG_HOOK_DOWN}"
e9ea243e 101 fi
8e3508ac 102 cli_statusline 3 "${HOOK}" "${status}"
e9ea243e 103
8e3508ac
MT
104 cli_print_fmt1 3 "IPv4 address" "$(routing_db_get ${zone} ipv4 local-ip-address)"
105 local gateway=$(routing_db_get ${zone} ipv4 remote-ip-address)
106 if isset gateway; then
107 cli_print_fmt1 3 "Gateway" "${gateway}"
e9ea243e 108 fi
50250b79 109 cli_space
e9ea243e
MT
110
111 exit ${EXIT_OK}
112}