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

Commit

Permalink
Fix validations for numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
esalberg committed Jul 21, 2016
1 parent 7acb4b3 commit 4952b21
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@
validate_bool($private_group)
validate_string($primary_gid)
validate_bool($auto_join)
validate_string($cache_flush_int)
validate_string($cache_obj_life)
validate_integer($cache_flush_int)
validate_integer($cache_obj_life)
validate_bool($log_buffer)
validate_string($maximum_password_age)
validate_string($minimum_password_age)
validate_string($password_warn)
validate_string($lockout_duration)
validate_string($lockout_bad_count)
validate_integer($maximum_password_age)
validate_integer($minimum_password_age)
validate_integer($password_warn)
validate_integer($lockout_duration)
validate_integer($lockout_bad_count)
validate_bool($sntp_enabled)
validate_bool($merge_groups)
validate_bool($manage_conf)
Expand All @@ -95,7 +95,7 @@
include '::centrify::service'

# ordering of class execution
anchor { 'centrify_begin': } -> Class ['::centrify::install'] ->
anchor { 'centrify_begin': } -> Class['::centrify::install'] ->
Class['::centrify::config'] ~> Class['::centrify::service'] ->
anchor { 'centrify_end': }
}

0 comments on commit 4952b21

Please sign in to comment.