diff options
-rw-r--r-- | initscripts.spec | 5 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/initscripts.spec b/initscripts.spec index 75dfc6ba..fa2bb99e 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.52 +Version: 7.53 License: GPL Group: System Environment/Base Release: 1 @@ -249,6 +249,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %attr(0664,root,utmp) /var/run/utmp %changelog +* Fri May 7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1 +- little lvm tweak (#121963) + * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.52-1 - ipv4 addresses are ints, not longs (#122479) diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index b507f77b..79fe39f6 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -383,7 +383,7 @@ if [ -x /sbin/lvm.static ]; then /bin/rm -f /dev/mapper/control echo "mkdmnod" | /sbin/nash --quiet >/dev/null 2>&1 [ -n "$SELINUX" ] && restorecon /dev/mapper/control - if [ -e /dev/mapper/control -a -x /sbin/lvm.static ]; then + if [ -c /dev/mapper/control -a -x /sbin/lvm.static ]; then if /sbin/lvm.static vgscan > /dev/null 2>&1 ; then action $"Setting up Logical Volume Management:" /sbin/lvm.static vgchange -a y && /sbin/lvm vgmknodes fi |