diff options
Diffstat (limited to 'network-scripts/ifdown')
-rwxr-xr-x | network-scripts/ifdown | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/network-scripts/ifdown b/network-scripts/ifdown index aa8fce7b..ec05891d 100755 --- a/network-scripts/ifdown +++ b/network-scripts/ifdown @@ -16,12 +16,6 @@ CONFIG=$1 exit 1 } -if ! is_true ${DEPRECATION_WARNING_ISSUED}; then - net_log $"You are using 'ifdown' script provided by 'network-scripts', which are now deprecated." warning ifdown >&2 - net_log $"'network-scripts' will be removed from distribution in near future." warning ifdown >&2 - net_log $"It is advised to switch to 'NetworkManager' instead - it provides 'ifup/ifdown' scripts as well." warning ifdown >&2 -fi - need_config "${CONFIG}" [ -f "$CONFIG" ] || { @@ -42,6 +36,12 @@ fi source_config +if ! is_true ${DEPRECATION_WARNING_ISSUED}; then + net_log $"You are using 'ifdown' script provided by 'network-scripts', which are now deprecated." warning ifdown >&2 + net_log $"'network-scripts' will be removed from distribution in near future." warning ifdown >&2 + net_log $"It is advised to switch to 'NetworkManager' instead - it provides 'ifup/ifdown' scripts as well." warning ifdown >&2 +fi + if [ -n "$IN_HOTPLUG" ] && [ "${HOTPLUG}" = "no" -o "${HOTPLUG}" = "NO" ] then exit 0 |