diff options
author | Bill Nottingham <notting@redhat.com> | 2005-10-03 19:58:41 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-10-03 19:58:41 +0000 |
commit | 5a61149aa971d06f5bb7285bb2705de90be57bc0 (patch) | |
tree | 9bf2fbe9134c82d5e551ba3fad8d91a69513a5db /sysconfig | |
parent | e41cb45e2f821b773d64147f4770a19993f6c4d9 (diff) | |
download | initscripts-5a61149aa971d06f5bb7285bb2705de90be57bc0.tar initscripts-5a61149aa971d06f5bb7285bb2705de90be57bc0.tar.gz initscripts-5a61149aa971d06f5bb7285bb2705de90be57bc0.tar.bz2 initscripts-5a61149aa971d06f5bb7285bb2705de90be57bc0.tar.xz initscripts-5a61149aa971d06f5bb7285bb2705de90be57bc0.zip |
clean up error message (#135167)
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/ifdown-eth | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifdown-eth b/sysconfig/network-scripts/ifdown-eth index b7c1e770..ee23d9ef 100755 --- a/sysconfig/network-scripts/ifdown-eth +++ b/sysconfig/network-scripts/ifdown-eth @@ -41,7 +41,7 @@ if [ -n "${HWADDR}" -a -z "${MACADDR}" ]; then if [ -n "${NEWCONFIG}" -a "${NEWCONFIG##*/}" != "${CONFIG##*/}" ]; then exec /sbin/ifdown ${NEWCONFIG} else - echo $"Device ${DEVICE} has different MAC address than expected, ignoring." + echo $"Device ${DEVICE} has MAC address ${FOUNDMACADDR}, instead of configured address ${HWADDR}. Ignoring." exit 1 fi fi |