From: Michael Tremer Date: Tue, 5 Jun 2012 20:52:56 +0000 (+0000) Subject: Fix two missing CONFIG_DIR substitutions. X-Git-Tag: 004~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84f3bd05ec0f11c554700c3c201a444dafe0491a;p=network.git Fix two missing CONFIG_DIR substitutions. --- diff --git a/functions.ports b/functions.ports index 52b44e84..89ab98f6 100644 --- a/functions.ports +++ b/functions.ports @@ -20,7 +20,7 @@ ############################################################################### function port_dir() { - echo "${CONFIG_DIR}/ports" + echo "${NETWORK_CONFIG_DIR}/ports" } function ports_get_all() { @@ -44,7 +44,7 @@ function port_file() { function port_exists() { local port=${1} - [ -f "${CONFIG_DIR}/ports/${port}" ] + [ -f "${NETWORK_CONFIG_DIR}/ports/${port}" ] } function port_get_hook() {