]> git.ipfire.org Git - people/arne_f/network.git/blame - functions.constants
network: Improve function that creates virtual devices.
[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
23COLORS=1
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
2ae4f579 36CONFIG_FILE_PARAMS="COLORS DEBUG SHELL TIMEOUT_RESTART"
1848564d 37
059469a8
MT
38DB_CONNECTION_FILE="${LOG_DIR}/connections.db"
39
1848564d
MT
40# Proper error codes
41EXIT_OK=0
42EXIT_ERROR=1
43EXIT_CONF_ERROR=2
44
45STATUS_UP=0
46STATUS_DOWN=1
47
48DISCOVER_OK=0
49DISCOVER_ERROR=1
50DISCOVER_NOT_SUPPORTED=2
51
52# The user is able to create zones that begin with these names
53VALID_ZONES="green orange red grey"
54
55SYS_CLASS_NET="/sys/class/net"
2ae4f579
MT
56
57# Timeout values
58TIMEOUT_RESTART=2