* Try to correct the Warning 'String containing only a variable'

This commit is contained in:
gardouille 2015-01-20 11:49:07 +01:00
parent 3db5703c49
commit f372d28fdf
3 changed files with 5 additions and 4 deletions

View File

@ -4,6 +4,7 @@
##### Changes
* Edit dependencies range.
* Change optional parameter order for the ipmi::ressource::user
* Try to correct the Warning 'String containing only a variable'
---------------------------------------

View File

@ -8,7 +8,7 @@
#
# [*sample_parameter*]
# Explanation of what this parameter affects and what it defaults to.
# e.g. "Specify one or more upstream ntp servers as an array."
# e.g. 'Specify one or more upstream ntp servers as an array.'
#
# === Variables
#
@ -16,8 +16,8 @@
#
# [*sample_variable*]
# Explanation of how this variable affects the funtion of this class and if
# it has a default. e.g. "The parameter enc_ntp_servers must be set by the
# External Node Classifier as a comma separated list of hostnames." (Note,
# it has a default. e.g. 'The parameter enc_ntp_servers must be set by the
# External Node Classifier as a comma separated list of hostnames.' (Note,
# global variables should be avoided in favor of class parameters as
# of Puppet 2.6.)
#

View File

@ -4,7 +4,7 @@
#
class ipmi::install {
# Don't use "${...}" because pkg_name variable is an array
# Don't use "${ipmi::pkg_name:}" because pkg_name variable is an array
package { $ipmi::pkg_name:
ensure => "${ipmi::pkg_ensure}",
}