diff options
Diffstat (limited to 'lib/puppet/util/fileparsing.rb')
-rw-r--r-- | lib/puppet/util/fileparsing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/util/fileparsing.rb b/lib/puppet/util/fileparsing.rb index 6b59975ab..6ffb69503 100644 --- a/lib/puppet/util/fileparsing.rb +++ b/lib/puppet/util/fileparsing.rb @@ -82,7 +82,7 @@ module Puppet::Util::FileParsing fields.collect { |field| # If the field is marked absent, use the appropriate replacement - if details[field] == :absent or details[field].nil? + if details[field] == :absent or details[field] == [:absent] or details[field].nil? if self.optional.include?(field) self.absent else |