diff options
Diffstat (limited to 'rc.d')
-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 |