summaryrefslogtreecommitdiffstats
path: root/rules/smartmontools.in
diff options
context:
space:
mode:
authorRemy Bohmer <linux@bohmer.net>2010-05-29 22:56:16 +0200
committerRemy Bohmer <linux@bohmer.net>2010-06-02 21:09:28 +0200
commit38e3e06d6183dc9eb1504baf72df7caa0206ac28 (patch)
tree4b3ed2d2b02242fd43a9e579df049d9e8e88abf8 /rules/smartmontools.in
parent19974bd935074b1b632c90b542001a329388fa40 (diff)
downloadptxdist-38e3e06d6183dc9eb1504baf72df7caa0206ac28.tar.gz
ptxdist-38e3e06d6183dc9eb1504baf72df7caa0206ac28.tar.xz
[smartmontools] add new packet
Adds the smartmontools package containing smartctl and smartd Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com> Signed-off-by: Remy Bohmer <linux@bohmer.net>
Diffstat (limited to 'rules/smartmontools.in')
-rw-r--r--rules/smartmontools.in45
1 files changed, 45 insertions, 0 deletions
diff --git a/rules/smartmontools.in b/rules/smartmontools.in
new file mode 100644
index 000000000..b481c1b61
--- /dev/null
+++ b/rules/smartmontools.in
@@ -0,0 +1,45 @@
+## SECTION=shell_and_console
+
+config SMARTMONTOOLS
+ tristate
+ prompt "smartmontools"
+ select BUSYBOX_START_STOP_DAEMON if SMARTMONTOOLS_SMARTD_INITD
+ help
+ The smartmontools package contains two utility programs (smartctl and smartd)
+ to control and monitor storage systems using the Self-Monitoring, Analysis
+ and Reporting Technology System (SMART) built into most modern ATA and SCSI
+ harddisks. In many cases, these utilities will provide advanced warning of
+ disk degradation and failure.
+if SMARTMONTOOLS
+
+config SMARTMONTOOLS_SMARTCTL
+ bool
+ default y
+ prompt "install smartctl"
+ help
+ Control and Monitor Utility for SMART Disks
+
+config SMARTMONTOOLS_SMARTD
+ bool
+ default n
+ prompt "install smartd"
+ help
+ SMART Disk Monitoring Daemon
+
+config SMARTMONTOOLS_SMARTD_CONFIG
+ bool
+ depends on SMARTMONTOOLS_SMARTD
+ default n
+ prompt "install smartd.conf"
+ help
+ SMART Disk Monitoring Daemon Configuration File
+
+config SMARTMONTOOLS_SMARTD_INITD
+ bool
+ depends on SMARTMONTOOLS_SMARTD
+ default n
+ prompt "install /etc/init.d/smartd"
+ help
+ SMART Disk Monitoring Daemon Configuration File
+
+endif