diff options
author | Bill Nottingham <notting@redhat.com> | 2008-09-03 10:13:30 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-09-03 10:13:30 -0400 |
commit | b4a2679dfeee219db109dd1259e3519263ed4773 (patch) | |
tree | 6af6c597565aecc04b88ddc5889d4e73dcbca8f7 /rc.d | |
parent | d76fe88aa176814394c3b1fdb53fa6d57749d4a0 (diff) | |
download | initscripts-b4a2679dfeee219db109dd1259e3519263ed4773.tar initscripts-b4a2679dfeee219db109dd1259e3519263ed4773.tar.gz initscripts-b4a2679dfeee219db109dd1259e3519263ed4773.tar.bz2 initscripts-b4a2679dfeee219db109dd1259e3519263ed4773.tar.xz initscripts-b4a2679dfeee219db109dd1259e3519263ed4773.zip |
Use 0.0.0.0/0, not 0/0. (#460580)
Updated iproute doesn't like the old syntax.
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 4a1e3eca..424ee442 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -480,7 +480,7 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then # must be done even if we have local storage. ipaddr= if [ "$HOSTNAME" = "localhost" -o "$HOSTNAME" = "localhost.localdomain" ]; then - ipaddr=$(ip addr show to 0/0 scope global | awk '/[[:space:]]inet / { print gensub("/.*","","g",$2) }') + ipaddr=$(ip addr show to 0.0.0.0/0 scope global | awk '/[[:space:]]inet / { print gensub("/.*","","g",$2) }') if [ -n "$ipaddr" ]; then eval $(ipcalc -h $ipaddr 2>/dev/null) hostname ${HOSTNAME} |