lvm2: 2.02.36 -> 2.02.37

This commit is contained in:
Danny Rawlins 2008-06-10 06:18:38 +10:00
parent d349641196
commit 1da9e90b6e
5 changed files with 11 additions and 32 deletions

View File

@ -1 +1 @@
39617ecc99d7e1aa8712ac60302e36c6 LVM2.2.02.36.tgz
19c19e1f31ec548dc31982478a8a5f63 LVM2.2.02.37.tgz

View File

@ -5,7 +5,7 @@
# Depends on: libdevmapper
name=lvm2
version=2.02.36
version=2.02.37
release=1
source=(ftp://sources.redhat.com/pub/lvm2/LVM2.$version.tgz)

View File

@ -4,24 +4,25 @@ REQUIREMENTS:
PRECAUTION:
Don't forget to run install scripts or patch rc manually
with:
Don't forget to patch rc.
with:
# patch -p 1 lvm2-rc.patch
# patch -d / -p 1 lvm2-rc.patch
PRE-INSTALL:
POST-INSTALL:
Patch rc:
# patch -d / -p 1 lvm2-rc.patch
This patches rc scripts for LVM2 support.
POST-INSTALL:
PRE-REMOVE:
This reverses the LVM2 rc scripts patch.
remove patch or reinstall the rc port and run rejmerge
# patch -R -d / -p 1 lvm2-rc.patch
POST-REMOVE:
NOTES:
post-install and pre-remove will only patch if there is
no errors on a patch dry run.

View File

@ -1,11 +0,0 @@
#!/usr/bin/env sh
# dry run test
/usr/bin/patch --dry-run -f -p 1 -i lvm2-rc.patch > /dev/null
# patch if no errors
if [ $? = 0 ]; then
/usr/bin/patch -p 1 -i lvm2-rc.patch
fi
# End of file

View File

@ -1,11 +0,0 @@
#!/usr/bin/env sh
# dry run test
/usr/bin/patch --dry-run -f -R -p 1 -i lvm2-rc.patch > /dev/null
# reverse patch if no errors
if [ $? = 0 ]; then
/usr/bin/patch -R -p 1 -i lvm2-rc.patch
fi
# End of file