diff options
author | Robert Demski <Robert.Demski@wp.pl> | 2006-10-02 18:08:05 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2006-10-02 18:08:05 +0000 |
commit | e25d511041afbdfd44f27709c6567bfaeb6fcdd3 (patch) | |
tree | d22bd5931b6e7086e7947f199dc59401711a8d73 /packages/scsi-idle/scsi-idle_2.4.23.bb | |
parent | 9f4ce64d0a8250568d46439730cef1ca03269fde (diff) |
add scsi idle: turn off SCSI disks when idle
Diffstat (limited to 'packages/scsi-idle/scsi-idle_2.4.23.bb')
-rw-r--r-- | packages/scsi-idle/scsi-idle_2.4.23.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/scsi-idle/scsi-idle_2.4.23.bb b/packages/scsi-idle/scsi-idle_2.4.23.bb new file mode 100644 index 0000000000..d18615164f --- /dev/null +++ b/packages/scsi-idle/scsi-idle_2.4.23.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "Description: turn off SCSI disks when idle \ +This package contains small programs to start and stop SCSI disks and a \ +daemon that spins down drives when idle. A kernel patch provided by the \ +kernel-patch-scsi-idle package is required to send spin up/down \ +commands to the SCSI hardware." +SECTION = "console/utils" +LICENSE = "GPLv2" +HOMEPAGE = "http://packages.debian.org/unstable/admin/scsi-idle" +MAINTAINER = "Robert Demski <Robert.Demski@wp.pl>" +AUTHOR = "Eduard Bloch <blade@debian.org>" +PR = "r1" + +SRC_URI = "${DEBIAN_MIRROR}/main/s/scsi-idle/scsi-idle_${PV}-5.tar.gz \ + file://makefile.patch;patch=1 \ + file://scsi-idle.init.patch;patch=1" + +S = "${WORKDIR}/scsi-idle-${PV}" + +inherit autotools + +do_install() { + install -d ${D}${sbindir} ${D}${mandir}/man8 + install -d ${D}${sysconfdir}/default + install -d ${D}${sysconfdir}/init.d + install -d ${D}${sysconfdir}/rcS.d + + install -m 0755 ${S}/scsi-idle ${D}${sbindir} + install -m 0755 ${S}/scsi-start ${D}${sbindir} + cd ${D}${sbindir} && ln -s scsi-start scsi-stop + install -m 0644 ${S}/debian/scsi-idle.default ${D}${sysconfdir}/default/scsi-idle + install -m 0755 ${S}/debian/scsi-idle.init ${D}${sysconfdir}/init.d/scsi-idle + cd ${D}${sysconfdir}/rcS.d && ln -s ../init.d/scsi-idle S57scsi-idle + install -m 0644 ${S}/scsi-idle.8 ${D}${mandir}/man8 + install -m 0644 ${S}/scsi-start.8 ${D}${mandir}/man8 +} |