diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-04 11:55:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-04 11:55:42 -0300 |
commit | dad616343a9a8fcaec4b25a87c66a3ae725a11f1 (patch) | |
tree | b24d40a90107651bf91ee4cddf5526c79118b82d /manifests | |
parent | 71e2d679d6757b9f7b6680468c4c6d6e3c42dcc6 (diff) | |
download | puppet-bootstrap-dad616343a9a8fcaec4b25a87c66a3ae725a11f1.tar.gz puppet-bootstrap-dad616343a9a8fcaec4b25a87c66a3ae725a11f1.tar.bz2 |
Hiera suport at config target
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/classes/configurator.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/classes/configurator.pp b/manifests/classes/configurator.pp index d0dd787..80c7ce3 100644 --- a/manifests/classes/configurator.pp +++ b/manifests/classes/configurator.pp @@ -10,7 +10,9 @@ # # Variables -$templates = "$bootstrap_path/templates" +$templates = "$bootstrap_path/templates" +$base_domain = hiera('bootstrap::base_domain', 'example.org') +$db_password = hiera('nodo::role::master::db_password', 'changeme') # Puppet configuration file { "$bootstrap_path/puppet.conf": |