diff options
author | Bill Nottingham <notting@redhat.com> | 2004-02-09 19:30:57 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-02-09 19:30:57 +0000 |
commit | a0cfec9304fabb11c837396fcca28140ed0d604c (patch) | |
tree | e97e1ae45f8990d7b12b6d69b85cc55313fc80a9 | |
parent | b47ace1f53543401bb7b8034f3a1af0a0a5324ae (diff) | |
download | initscripts-a0cfec9304fabb11c837396fcca28140ed0d604c.tar initscripts-a0cfec9304fabb11c837396fcca28140ed0d604c.tar.gz initscripts-a0cfec9304fabb11c837396fcca28140ed0d604c.tar.bz2 initscripts-a0cfec9304fabb11c837396fcca28140ed0d604c.tar.xz initscripts-a0cfec9304fabb11c837396fcca28140ed0d604c.zip |
use system-config-network
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index eccbf73c..1c14e7ef 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -780,11 +780,11 @@ if [ -x /sbin/hdparm ]; then fi # Boot time profiles. Yes, this should be somewhere else. -if [ -x /usr/sbin/redhat-config-network-cmd ]; then +if [ -x /usr/sbin/system-config-network-cmd ]; then if strstr "$cmdline" netprofile= ; then for arg in $cmdline ; do if [ "${arg##netprofile=}" != "${arg}" ]; then - /usr/sbin/redhat-config-network-cmd --profile ${arg##netprofile=} + /usr/sbin/system-config-network-cmd --profile ${arg##netprofile=} fi done fi |