diff options
author | David Kaspar [Dee'Kej] <dkaspar@redhat.com> | 2017-07-21 11:25:28 +0200 |
---|---|---|
committer | Dee'Kej <deekej@linuxmail.org> | 2017-08-07 13:23:56 +0200 |
commit | 3bd816fb3a30e085cfac69d14f61243920472f65 (patch) | |
tree | 83e4439be1d31ee9576c300d5b3545561a51e1e5 /sysconfig/network-scripts | |
parent | 19ebbffd7d90e8d8d018581b05e22619b7f3a65e (diff) | |
download | initscripts-3bd816fb3a30e085cfac69d14f61243920472f65.tar initscripts-3bd816fb3a30e085cfac69d14f61243920472f65.tar.gz initscripts-3bd816fb3a30e085cfac69d14f61243920472f65.tar.bz2 initscripts-3bd816fb3a30e085cfac69d14f61243920472f65.tar.xz initscripts-3bd816fb3a30e085cfac69d14f61243920472f65.zip |
init.d/functions: convert2sec() function added
And network-scripts/network-functions was patched to use convert2sec().
This function can be used to convert the value of its first parameter
to a number of seconds - based on the time unit (specified as the
second parameter).
This is mostly useful for converting values for use with the sleep(1).
Diffstat (limited to 'sysconfig/network-scripts')
-rw-r--r-- | sysconfig/network-scripts/network-functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions index 70896ff1..d7915e31 100644 --- a/sysconfig/network-scripts/network-functions +++ b/sysconfig/network-scripts/network-functions @@ -198,7 +198,7 @@ ethtool_set() IFS=';'; if [ -n "${ETHTOOL_DELAY}" ]; then # Convert microseconds to seconds: - local ETHTOOL_DELAY_SEC=$(awk "BEGIN {printf \"%f\", ${ETHTOOL_DELAY} / 1000000}") + local ETHTOOL_DELAY_SEC=$(convert2sec ${ETHTOOL_DELAY} micro) sleep ${ETHTOOL_DELAY_SEC} fi for opts in $ETHTOOL_OPTS ; do |