diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-11 14:52:25 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-11 14:52:25 +0000 |
commit | 468d3e89253a2a0af7e69557fe0f60bb1cde7377 (patch) | |
tree | e8ddc0e6aff2d092c97c41cfc5d57768435ef4d9 /testing/smartmontools | |
parent | 2283129aea3418baea59a73e7251651aa2e85656 (diff) | |
download | aports-468d3e89253a2a0af7e69557fe0f60bb1cde7377.tar.bz2 aports-468d3e89253a2a0af7e69557fe0f60bb1cde7377.tar.xz |
testing/smartmontools: new aport
Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives.
http://smartmontools.sourceforge.net
Diffstat (limited to 'testing/smartmontools')
-rw-r--r-- | testing/smartmontools/APKBUILD | 31 | ||||
-rw-r--r-- | testing/smartmontools/smartd.confd | 4 | ||||
-rw-r--r-- | testing/smartmontools/smartd.initd | 43 |
3 files changed, 78 insertions, 0 deletions
diff --git a/testing/smartmontools/APKBUILD b/testing/smartmontools/APKBUILD new file mode 100644 index 0000000000..8ba05087af --- /dev/null +++ b/testing/smartmontools/APKBUILD @@ -0,0 +1,31 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=smartmontools +pkgver=5.38 +pkgrel=0 +pkgdesc="Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives." +url="http://smartmontools.sourceforge.net" +license="GPL" +depends= +makedepends= +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz + smartd.initd + smartd.confd + " + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir"/ install + rm -r "$pkgdir"/etc/rc.d + install -Dm755 ../smartd.initd "$pkgdir"/etc/init.d/smartd + install -Dm644 ../smartd.confd "$pkgdir"/etc/conf.d/smartd +} +md5sums="a282846532ecbd6b4a28072373b3a70b smartmontools-5.38.tar.gz +64e6fc908146b885aa3f88796edf72f3 smartd.initd +371cdb7cc9dc924b6d12224d66b193c6 smartd.confd" diff --git a/testing/smartmontools/smartd.confd b/testing/smartmontools/smartd.confd new file mode 100644 index 0000000000..4b7db4dfd8 --- /dev/null +++ b/testing/smartmontools/smartd.confd @@ -0,0 +1,4 @@ +# /etc/conf.d/smartd: config file for /etc/init.d/smartd + +# Insert any other options needed +SMARTD_OPTS="" diff --git a/testing/smartmontools/smartd.initd b/testing/smartmontools/smartd.initd new file mode 100644 index 0000000000..560e17d646 --- /dev/null +++ b/testing/smartmontools/smartd.initd @@ -0,0 +1,43 @@ +#!/sbin/runscript +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/files/smartd.rc,v 1.8 2009/10/11 00:43:58 vapier Exp $ + +depend() { + need localmount + after bootmisc +} + +opts="${opts} reload" + +checkconfig() { + if [ ! -f "/etc/smartd.conf" ] ; then + eerror "You should setup your /etc/smartd.conf file!" + eerror "See the smartd.conf(5) manpage." + return 1 + fi + return 0 +} + +start() { + checkconfig || return 1 + + ebegin "Starting S.M.A.R.T. monitoring daemon" + start-stop-daemon --start --exec /usr/sbin/smartd \ + --pidfile /var/run/smartd.pid \ + -- -p /var/run/smartd.pid ${SMARTD_OPTS} + eend $? +} + +stop() { + ebegin "Stopping S.M.A.R.T. monitoring daemon" + start-stop-daemon --stop --exec /usr/sbin/smartd \ + --pidfile /var/run/smartd.pid + eend $? +} + +reload() { + ebegin "Reloading configuration" + start-stop-daemon --oknodo --stop --signal HUP --pidfile /var/run/smartd.pid smartd + eend $? +} |