diff options
author | David Kaspar [Dee'Kej] <dkaspar@redhat.com> | 2018-08-01 17:41:08 +0200 |
---|---|---|
committer | Dee'Kej <deekej@linuxmail.org> | 2018-08-03 13:03:15 +0200 |
commit | 285473ae10611849129eb16050ea6d6b8d84388d (patch) | |
tree | 16a1678d6b8d46f6f8563dce165719649d652e52 /network-scripts/ifup | |
parent | 1a7c6bdccce821275789a998a6decbbaf2d33f39 (diff) | |
download | initscripts-285473ae10611849129eb16050ea6d6b8d84388d.tar initscripts-285473ae10611849129eb16050ea6d6b8d84388d.tar.gz initscripts-285473ae10611849129eb16050ea6d6b8d84388d.tar.bz2 initscripts-285473ae10611849129eb16050ea6d6b8d84388d.tar.xz initscripts-285473ae10611849129eb16050ea6d6b8d84388d.zip |
network/ifup/ifdown: deprecation warnings for 'network-scripts' added
In case of 'network' service these warnings are displayed only once,
to not spam unnecessarily user's journalctl if they have many NICs.
Diffstat (limited to 'network-scripts/ifup')
-rwxr-xr-x | network-scripts/ifup | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/network-scripts/ifup b/network-scripts/ifup index d25db5af..574f5554 100755 --- a/network-scripts/ifup +++ b/network-scripts/ifup @@ -31,6 +31,12 @@ CONFIG=${1} exit 1 } +if ! is_true ${DEPRECATION_WARNING_ISSUED}; then + net_log $"You are using 'ifup' script provided by 'network-scripts', which are now deprecated." warning ifup + net_log $"'network-scripts' will be removed in one of the next major releases of RHEL." warning ifup + net_log $"It is advised to switch to 'NetworkManager' instead - it provides 'ifup/ifdown' scripts as well." warning ifup +fi + need_config "${CONFIG}" [ -f "${CONFIG}" ] || { |