aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--initscripts.spec5
-rwxr-xr-xrc.d/rc.sysinit4
2 files changed, 8 insertions, 1 deletions
diff --git a/initscripts.spec b/initscripts.spec
index a7f10a52..3a19770f 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.67
+Version: 7.68
License: GPL
Group: System Environment/Base
Release: 1
@@ -250,6 +250,9 @@ rm -rf $RPM_BUILD_ROOT
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
+* Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1
+- execute zfcfconf.sh if available (mainframe)
+
* Mon Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
- fix change_resolv_conf: if pre-existing /etc/resolv.conf
- non-existent or empty, replace with new file contents.
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 2b021402..4dfbf465 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -439,6 +439,10 @@ mount -f /dev/pts
[ -f /proc/bus/usb/devices ] && mount -f -t usbdevfs usbdevfs /proc/bus/usb
[ -e /dev/.devfsd ] && mount -f -t devfs devfs /dev
+# configure all zfcp (scsi over fibrechannel) devices before trying to mount them
+# zfcpconf.sh exists only on mainframe
+[ -x /sbin/zfcpconf.sh ] && /sbin/zfcpconf.sh
+
# The root filesystem is now read-write, so we can now log
# via syslog() directly..
if [ -n "$IN_INITLOG" ]; then