Skip to content
This repository has been archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #27 from lukebigum/master
Browse files Browse the repository at this point in the history
implementing suggested fix for #6 - :absent symbol is now also parsed as False
  • Loading branch information
bastelfreak committed Jul 21, 2017
2 parents b6fb9c1 + f4b87ca commit 76fef51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/puppet_x/util/boolean.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def true_values

# All values that are considered 'false' by Puppet internals
def false_values
[false, 'false', :false, :no, 'no', :undef, nil]
[false, 'false', :false, :no, 'no', :undef, nil, :absent]
end

# Normalize Boolean values
Expand Down

0 comments on commit 76fef51

Please sign in to comment.