#!/bin/bash ############################################################################### # # # IPFire.org - A linux based firewall # # Copyright (C) 2012 IPFire Network Development Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # ############################################################################### INIT_FUNCTIONS="" function init_register() { INIT_FUNCTIONS="${INIT_FUNCTIONS} $@" } function init_run() { local init for init in ${INIT_FUNCTIONS}; do ${init} done } # Include version information. . /usr/lib/network/version for file in /usr/lib/network/functions.*; do . ${file} done # Reading in global configuration files config_read_globals # Set colour mode case "${COLOURS}" in auto) colours_auto_disable ;; off|0) colours_disable ;; on|1) # Do nothing ;; *) warning_log "Unknown parameter given for COLOURS: ${COLOURS}" ;; esac