]> git.ipfire.org Git - people/arne_f/network.git/blame - functions.constants
Fix weird device CLI command.
[people/arne_f/network.git] / functions.constants
CommitLineData
1848564d
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
22# Enable colors by default
6dbd51ba 23COLOURS="auto"
1848564d
MT
24
25BASE_DIR=/lib/network
26CONFIG_DIR=/etc/network
27HOOKS_DIR=${BASE_DIR}/hooks
059469a8 28LOG_DIR=/var/log/network
1848564d
MT
29RUN_DIR=/var/run/network
30ZONE_DIR=${CONFIG_DIR}
31
059469a8 32RED_RUN=${RUN_DIR}/red
1848564d
MT
33PPP_SECRETS=/etc/ppp/secrets
34
35CONFIG_FILE=${CONFIG_DIR}/network_config
ff8ec5ef
MT
36CONFIG_FILE_PARAMS="COLOURS DEBUG SHELL TIMEOUT_RESTART"
37
38RED_DB_DIR=${RUN_DIR}/red
1848564d 39
059469a8
MT
40DB_CONNECTION_FILE="${LOG_DIR}/connections.db"
41
1848564d
MT
42# Proper error codes
43EXIT_OK=0
44EXIT_ERROR=1
45EXIT_CONF_ERROR=2
1578dae9 46EXIT_ERROR_ASSERT=3
1848564d
MT
47
48STATUS_UP=0
49STATUS_DOWN=1
711ffac1
MT
50STATUS_NOCARRIER=2
51
52STATUS_TEXT[${STATUS_UP}]="UP"
53STATUS_TEXT[${STATUS_DOWN}]="DOWN"
54STATUS_TEXT[${STATUS_NOCARRIER}]="NO CARRIER"
55
56STATUS_COLOUR[${STATUS_UP}]=${COLOUR_GREEN}
57STATUS_COLOUR[${STATUS_DOWN}]=${COLOUR_RED}
58STATUS_COLOUR[${STATUS_NOCARRIER}]=${COLOUR_YELLOW}
1848564d
MT
59
60DISCOVER_OK=0
61DISCOVER_ERROR=1
62DISCOVER_NOT_SUPPORTED=2
63
64# The user is able to create zones that begin with these names
65VALID_ZONES="green orange red grey"
66
67SYS_CLASS_NET="/sys/class/net"
2ae4f579
MT
68
69# Timeout values
70TIMEOUT_RESTART=2
711ffac1 71
feb76eaf 72DEVICE_PRINT_LINE1=" %-24s %s\n"