diff options
author | Harald Hoyer <harald@redhat.com> | 2010-09-13 16:20:36 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2010-09-13 17:27:15 +0200 |
commit | 192392a47594d8141aaf14a0a705bc421899adb0 (patch) | |
tree | e4ef9dba29ad1543b1b05dda10ac2c2de119563b | |
parent | 6c0c324a6c0c031ed4604c6a020829503e8d086f (diff) | |
download | initscripts-192392a47594d8141aaf14a0a705bc421899adb0.tar initscripts-192392a47594d8141aaf14a0a705bc421899adb0.tar.gz initscripts-192392a47594d8141aaf14a0a705bc421899adb0.tar.bz2 initscripts-192392a47594d8141aaf14a0a705bc421899adb0.tar.xz initscripts-192392a47594d8141aaf14a0a705bc421899adb0.zip |
remove deprecation comments for raw devices and fix path
-rw-r--r-- | initscripts.spec | 6 | ||||
-rwxr-xr-x | rc.d/init.d/rawdevices | 6 | ||||
-rw-r--r-- | sysconfig/rawdevices | 3 |
3 files changed, 8 insertions, 7 deletions
diff --git a/initscripts.spec b/initscripts.spec index a15cfdd3..85879f49 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -227,6 +227,12 @@ Resolves: rhbz#498052 - remove /var/run/dovecot/* also (not only /var/run/dovecot/*/*) Resolves: rhbz#492994 +* Sat Jul 04 2009 Harald Hoyer <harald@redhat.com> 8.45.30-1 +- fix raw path in initscript (#472891) +- remove deprecation comments (#472891) +- applied missing ipcalc patch for IPv6 address validation (#464268) +- Resolves: rhbz#472891 rhbz#464268 + * Tue Jun 16 2009 Harald Hoyer <harald@redhat.com> 8.45.29-1 - cleanup /var/run/libvirt (#505600) - Resolves: rhbz#505600 diff --git a/rc.d/init.d/rawdevices b/rc.d/init.d/rawdevices index 67954d17..81cdeb24 100755 --- a/rc.d/init.d/rawdevices +++ b/rc.d/init.d/rawdevices @@ -7,13 +7,11 @@ # (such as hard drive partitions). This is for the use \ # of applications such as Oracle. You can set up the \ # raw device to block device mapping by editing \ -# the file /etc/sysconfig/rawdevices. Note that the use \ -# of raw devices is deprecated, and applications should \ -# open regular block devices with O_DIRECT instead. +# the file /etc/sysconfig/rawdevices. # # config: /etc/sysconfig/rawdevices -[ -f /usr/bin/raw ] || exit 0 +[ -f /bin/raw ] || exit 0 [ -f /etc/sysconfig/rawdevices ] || exit 0 # Exit if the file just has the default comments. LC_ALL=C /bin/egrep -q -v "^ *#" /etc/sysconfig/rawdevices 2>/dev/null || exit 0 diff --git a/sysconfig/rawdevices b/sysconfig/rawdevices index 69360f0e..3c776383 100644 --- a/sysconfig/rawdevices +++ b/sysconfig/rawdevices @@ -1,6 +1,3 @@ -# This file and interface are deprecated. -# Applications needing raw device access should open regular -# block devices with O_DIRECT. # raw device bindings # format: <rawdev> <major> <minor> # <rawdev> <blockdev> |