Don't print sensitive information to stdout during run.
Closes-Bug: #1596840 Change-Id: I864d25f60fdf03f1683f6bcda6e1886baa01eb6c
This commit is contained in:
parent
b7fb86e350
commit
585d236e26
@ -10,7 +10,6 @@ Puppet::Type.newtype(:ceilometer_config) do
|
|||||||
newproperty(:value, :array_matching => :all) do
|
newproperty(:value, :array_matching => :all) do
|
||||||
desc 'The value of the setting to be defined.'
|
desc 'The value of the setting to be defined.'
|
||||||
def insync?(is)
|
def insync?(is)
|
||||||
puts is
|
|
||||||
return true if @should.empty?
|
return true if @should.empty?
|
||||||
return false unless is.is_a? Array
|
return false unless is.is_a? Array
|
||||||
return false unless is.length == @should.length
|
return false unless is.length == @should.length
|
||||||
|
Loading…
Reference in New Issue
Block a user