aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2004-08-11 16:37:45 +0000
committerBill Nottingham <notting@redhat.com>2004-08-11 16:37:45 +0000
commitdf0aafbb83653e9da9ebe717ce7dc94d0b542994 (patch)
tree7457144f6bae7702a38e9fafd075be941c654f3d
parentb74174ef3b647967dfb757fd0dc9e90d3394612c (diff)
downloadinitscripts-df0aafbb83653e9da9ebe717ce7dc94d0b542994.tar
initscripts-df0aafbb83653e9da9ebe717ce7dc94d0b542994.tar.gz
initscripts-df0aafbb83653e9da9ebe717ce7dc94d0b542994.tar.bz2
initscripts-df0aafbb83653e9da9ebe717ce7dc94d0b542994.tar.xz
initscripts-df0aafbb83653e9da9ebe717ce7dc94d0b542994.zip
spelling :)r7-61-1
-rw-r--r--initscripts.spec4
-rw-r--r--sysconfig.txt4
-rwxr-xr-xsysconfig/network-scripts/ifup2
3 files changed, 5 insertions, 5 deletions
diff --git a/initscripts.spec b/initscripts.spec
index dd8f0a03..b7d9659e 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -1,6 +1,6 @@
Summary: The inittab file and the /etc/init.d scripts.
Name: initscripts
-Version: 7.61
+Version: 7.61.1
License: GPL
Group: System Environment/Base
Release: 1
@@ -251,7 +251,7 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Tue Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
-- fix for bug 120093: add PERSISTANT_DHCLIENT option to ifcfg files
+- fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files
* Tue Aug 03 2004 Karsten Hopp <karsten@redhat.de> 7.60-1
- write peerid into sysfs for IUCV devices (mainframe)
diff --git a/sysconfig.txt b/sysconfig.txt
index 9bc4322e..1110b116 100644
--- a/sysconfig.txt
+++ b/sysconfig.txt
@@ -543,13 +543,13 @@ Files in /etc/sysconfig/network-scripts/
Set the hardware address for this device to this.
Use of this in conjunction with HWADDR= may cause
unintended behavior.
- PERSISTANT_DHCLIENT=yes|no|1|0
+ PERSISTENT_DHCLIENT=yes|no|1|0
Without this option, or if it is 'no'/'0', and BOOTPROTO=dhcp,
dhclient is run for the interface in "one-shot" mode; if the
dhcp server does not respond for a configurable timeout, then
dhclient exits and the interface is not brought up -
the '-1' option is given to dhclient.
- If PERSISTANT_DHCLIENT=yes, then dhclient will keep on trying
+ If PERSISTENT_DHCLIENT=yes, then dhclient will keep on trying
to contact the dhcp server when it does not respond - no '-1'
option is given to dhclient.
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup
index 53a6ebbf..5fea98a6 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -252,7 +252,7 @@ fi
if [ -n "${DYNCONFIG}" ]; then
PUMPARGS=$PUMPARGS
DHCPCDARGS="$DHCPCDARGS -n"
- if [[ "${PERSISTANT_DHCLIENT}" = [yY1]* ]]; then
+ if [[ "${PERSISTENT_DHCLIENT}" = [yY1]* ]]; then
ONESHOT="";
else
ONESHOT="-1";