diff options
author | Bill Nottingham <notting@redhat.com> | 2001-01-06 17:32:15 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-01-06 17:32:15 +0000 |
commit | 28b645d341e8007089edfc7ea007008093ef8dba (patch) | |
tree | 5f74fd4b8282e5208ffa8dadac06141585196d28 | |
parent | 7ed6e7f4fbbde532e3cc0c9f5ccaa0a114dfbee8 (diff) | |
download | initscripts-28b645d341e8007089edfc7ea007008093ef8dba.tar initscripts-28b645d341e8007089edfc7ea007008093ef8dba.tar.gz initscripts-28b645d341e8007089edfc7ea007008093ef8dba.tar.bz2 initscripts-28b645d341e8007089edfc7ea007008093ef8dba.tar.xz initscripts-28b645d341e8007089edfc7ea007008093ef8dba.zip |
conflict with ypbind < 1.6-12, since we don't set the NIS domain name anymore
-rw-r--r-- | initscripts.spec | 2 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/initscripts.spec b/initscripts.spec index 13c57ee3..0866c94e 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -12,7 +12,7 @@ Requires: setup >= 2.0.3, /sbin/fuser, which Requires: modutils >= 2.3.11-5 Requires: util-linux >= 2.10 Conflicts: kernel <= 2.2, timeconfig < 3.0, pppd < 2.3.9, wvdial < 1.40-3 -Conflicts: initscripts < 1.22.1-5 +Conflicts: initscripts < 1.22.1-5 ypbind < 1.6-12 Obsoletes: rhsound sapinit Prereq: /sbin/chkconfig, /usr/sbin/groupadd, gawk, fileutils BuildPrereq: glib-devel diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index f4fe64de..6a9caa4b 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -195,6 +195,11 @@ if [ "$BOOTUP" != "serial" ]; then else fsckoptions="-V $fsckoptions" fi + +# LVM Setting +if [ -e /proc/lvm -a -x /sbin/vgchange ]; then + /sbin/vgchange -a y +fi _RUN_QUOTACHECK=0 ROOTFSTYPE=`grep " / " /proc/mounts | awk '{ print $3 }'` |