diff options
author | Michael Hanson <hansonorders@verison.net> | 2010-03-23 21:25:18 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verison.net> | 2010-03-23 21:25:18 (GMT) |
commit | 5e01031c49106e47e2cc03453dcd66c801bb188f (patch) | |
tree | 8b36e3d977d30486d376af4d5d2ef26b58f03eb2 /abs | |
parent | 199ea329decf9acddd004b17aea3bc901121032a (diff) | |
download | linhes_pkgbuild-5e01031c49106e47e2cc03453dcd66c801bb188f.zip linhes_pkgbuild-5e01031c49106e47e2cc03453dcd66c801bb188f.tar.gz linhes_pkgbuild-5e01031c49106e47e2cc03453dcd66c801bb188f.tar.bz2 |
mdadm: update to latest, add run file/runit support.
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core-testing/mdadm/PKGBUILD | 18 | ||||
-rwxr-xr-x | abs/core-testing/mdadm/run | 10 |
2 files changed, 19 insertions, 9 deletions
diff --git a/abs/core-testing/mdadm/PKGBUILD b/abs/core-testing/mdadm/PKGBUILD index 0af45bf..147b18b 100644 --- a/abs/core-testing/mdadm/PKGBUILD +++ b/abs/core-testing/mdadm/PKGBUILD @@ -1,8 +1,8 @@ # $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ # Maintainer: Judd Vinet <jvinet@zeroflux.org> pkgname=mdadm -pkgver=3.0 -pkgrel=12 +pkgver=3.1.2 +pkgrel=1 pkgdesc="A tool for managing/monitoring Linux md device arrays, also known as Software RAID" arch=(i686 x86_64) license=('GPL') @@ -12,20 +12,15 @@ depends=('glibc') backup=('etc/mdadm.conf') conflicts=('udev<135-4') source=(ftp://ftp.kernel.org/pub/linux/utils/raid/mdadm/$pkgname-$pkgver.tar.bz2 \ - mdadm mdadm.conf raid-partitions_install raid-partitions_hook) + run mdadm.conf raid-partitions_install raid-partitions_hook) replaces=('raidtools') -md5sums=('bcd27a1359b18e25e61593221d098f6a' - '6df172c8f77b280018cf87eb3d313f29' - '0ce4c0f9770bf582a71228053566359d' - '9de7e423ec9c6766b5f5d39915929003' - '09d72c714b40b6fa1e8eab04c1dabd42') build() { cd $startdir/src/$pkgname-$pkgver make || return 1 make INSTALL=/bin/install DESTDIR=$startdir/pkg install install -D -m644 ../mdadm.conf $startdir/pkg/etc/mdadm.conf - install -D -m755 ../mdadm $startdir/pkg/etc/rc.d/mdadm + install -D -m755 ../run $startdir/pkg/etc/sv/mdadm/run install -D -m644 ../raid-partitions_install $startdir/pkg/lib/initcpio/install/raid-partitions install -D -m644 ../raid-partitions_hook $startdir/pkg/lib/initcpio/hooks/raid-partitions # a static binary is required for Arch's initrd @@ -33,3 +28,8 @@ build() { make LDFLAGS+=-static || return 1 install -D -m755 mdadm $startdir/pkg/sbin/mdadm.static } +md5sums=('c5a39f38c465229767a5af2a4eb81bef' + '0b12cc70819ec274f6eec0b8a4238970' + '0ce4c0f9770bf582a71228053566359d' + '9de7e423ec9c6766b5f5d39915929003' + '09d72c714b40b6fa1e8eab04c1dabd42') diff --git a/abs/core-testing/mdadm/run b/abs/core-testing/mdadm/run new file mode 100755 index 0000000..567332e --- /dev/null +++ b/abs/core-testing/mdadm/run @@ -0,0 +1,10 @@ +#!/bin/bash +# +# Start Monitoring software raid arrays +exec 2>&1 +export TERM=linux +. /etc/rc.conf +. /etc/rc.d/functions + + stat_runit "Starting mdadm RAID Monitor" + exec /sbin/mdadm -F -s |