]> git.ipfire.org Git - people/arne_f/network.git/blame - functions.constants
network: Update codebase.
[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
28RUN_DIR=/var/run/network
29ZONE_DIR=${CONFIG_DIR}
30
31RED_RUN=/var/run/network/red
32PPP_SECRETS=/etc/ppp/secrets
33
34CONFIG_FILE=${CONFIG_DIR}/network_config
35CONFIG_FILE_PARAMS="COLORS DEBUG SHELL"
36
37# Proper error codes
38EXIT_OK=0
39EXIT_ERROR=1
40EXIT_CONF_ERROR=2
41
42STATUS_UP=0
43STATUS_DOWN=1
44
45DISCOVER_OK=0
46DISCOVER_ERROR=1
47DISCOVER_NOT_SUPPORTED=2
48
49# The user is able to create zones that begin with these names
50VALID_ZONES="green orange red grey"
51
52SYS_CLASS_NET="/sys/class/net"