From: Michael Tremer Date: Sun, 27 May 2012 16:43:51 +0000 (+0000) Subject: Don't test if RUN_DIR exists. X-Git-Tag: 004~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0c68f01c489ebd000b777cbb7c89cf552309999;p=network.git Don't test if RUN_DIR exists. This directory will be created by systemd. --- diff --git a/functions b/functions index 6ced711e..3c966b95 100644 --- a/functions +++ b/functions @@ -26,11 +26,6 @@ done # Reading in network tool configuration network_config_read -# Create run dir -if ! [ -d "${RUN_DIR}" ]; then - mkdir ${RUN_DIR} -fi - # Set colour mode case "${COLOURS}" in auto) @@ -46,4 +41,3 @@ case "${COLOURS}" in warning_log "Unknown parameter given for COLOURS: ${COLOURS}" ;; esac -