Skip to content

Commit

Permalink
synx up smartd comments with README
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Hoblitt committed Oct 5, 2013
1 parent afd6759 commit 6cbd702
Showing 1 changed file with 30 additions and 27 deletions.
57 changes: 30 additions & 27 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -2,86 +2,89 @@
#
# Manages the smartmontools package including the smartd daemon
#
#
# === Parameters
#
# All parameteres are optional.
# All parameters are optional.
#
# [*ensure*]
# String.
#
# `String`
#
# Standard Puppet ensure semantics (and supports `purged` state if your
# package provider does). Valid values are:
# '^present$|^latest$|^absent$|^purged$'
# `present`,`latest`,`absent`,`purged`
#
# defaults to: `present`
#
# [*package_name*]
# String.
# `String`
#
# Name of the smartmontools package.
#
# defaults to: 'smartmontools'
# defaults to: `smartmontools`
#
# [*service_name*]
# String.
# `String`
#
# Name of the smartmontools monitoring daemon.
#
# defaults to: 'smartd'
# defaults to: `smartd`
#
# [*service_ensure*]
# String.
# `String`
#
# State of the smartmontools monitoring daemon. Valid values are:
# '^running$|^stopped$'
#
# defaults to: 'running'
# State of the smartmontools monitoring daemon. Valid values are:
# `running`,`stopped`
#
# defaults to: `running`
#
# [*config_file*]
# String.
# `String`
#
# Path to the configuration file for the monitoring daemon.
#
# defaults to: (OS-specific)
#
# [*devicescan*]
# Boolean.
# `Bool`
#
# Sets the `DEVICESCAN` directive in the smart daemon config file. Tells the
# smart daemon to automatically detect all of the SMART-capable drives in the
# system.
#
# defaults to: true
# defaults to: `true`
#
# [*devicescan_options*]
# String.
# `String`
#
# Passes options to the `DEVICESCAN` directive. *devicescan* must equal true
# Passes options to the `DEVICESCAN` directive. `devicescan` must equal true
# for this to have any effect.
#
# defaults to: ''
# defaults to: `undef`
#
# [*devices*]
# Array of Hash.
# `Array` of `Hash`
#
# Explicit list of raw block devices to check. Eg.
# [{ device => '/dev/sda', options => '-I 194' }]
# [{ device => '/dev/sda', options => '-I 194' }]
#
# defaults to: []
# defaults to: `[]`
#
# [*mail_to*]
# String.
# `String`
#
# Smart daemon notifcation email address.
#
# defaults to: 'root'
# defaults to: `root`
#
# [*warning_schedule*]
# String.
# `String`
#
# Smart daemon problem mail notification frequency. Valid values are:
# `daily`,`once`,`diminishing`
#
# Smart daemon problem notification frequency.
# defaults to: `daily`
#
# defaults to: 'daily'
#
# === Authors
#
Expand Down

0 comments on commit 6cbd702

Please sign in to comment.