diff options
author | Jeff Johnson <jbj@redhat.com> | 1998-12-06 04:44:17 +0000 |
---|---|---|
committer | Jeff Johnson <jbj@redhat.com> | 1998-12-06 04:44:17 +0000 |
commit | 1abee29c5e4ddfb85887dfd899f43a1e1e58f6d6 (patch) | |
tree | ece7267a2f0d6d5849a84e88729a4d11d67cfdc9 | |
parent | 4006bd7cca91e3197db1149e0cc0f7598592d1cc (diff) | |
download | initscripts-1abee29c5e4ddfb85887dfd899f43a1e1e58f6d6.tar initscripts-1abee29c5e4ddfb85887dfd899f43a1e1e58f6d6.tar.gz initscripts-1abee29c5e4ddfb85887dfd899f43a1e1e58f6d6.tar.bz2 initscripts-1abee29c5e4ddfb85887dfd899f43a1e1e58f6d6.tar.xz initscripts-1abee29c5e4ddfb85887dfd899f43a1e1e58f6d6.zip |
Bug #205 sez':
in ifup-ipx script underlines in next line should be
changes to dots
for frametype in 802_2 802_3 ETHERII SNAP ; do
I have verified this to be a bug in the initscripts. If autoprimary
and and autoframetype is enabled in /etc/sysconfig/network then the
interface will come up properly. If they are set to no then whatever
frametypes that are defined in the
/etc/sysconfig/network-scripts/ifcfg-ethx will not become activated.
-rwxr-xr-x | sysconfig/network-scripts/ifup-ipx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup-ipx b/sysconfig/network-scripts/ifup-ipx index 1a966ad3..b77ff3e8 100755 --- a/sysconfig/network-scripts/ifup-ipx +++ b/sysconfig/network-scripts/ifup-ipx @@ -24,7 +24,7 @@ CONFIG=$1 [ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG source_config -for frametype in 802_2 802_3 ETHERII SNAP ; do +for frametype in 802.2 802.3 ETHERII SNAP ; do # Yes, this kind of evaluation is really necessary to do this. # Welcome to shell programming... No, we were not smoking some # particularly good floppies while we wrote this. :-) |