diff options
author | Micah Anderson <micah@riseup.net> | 2012-12-11 13:10:30 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-12-11 13:10:30 -0500 |
commit | 090dca27921efe22fdc39c8598356bfb74e5fe99 (patch) | |
tree | 7856c63536a413b5f060285c6caa00043aa272a3 /puppet | |
parent | e8f28cf269fe706ed556f84d6e03d6a574dfa26d (diff) |
setup /etc/hosts based on a template and the hiera value 'hosts'
This will replace the existing /etc/hosts, so we will want to make this more smart later
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/modules/site_config/manifests/hosts.pp | 7 | ||||
-rw-r--r-- | puppet/modules/site_config/manifests/init.pp | 3 | ||||
-rw-r--r-- | puppet/modules/site_config/templates/hosts | 11 |
3 files changed, 21 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/hosts.pp b/puppet/modules/site_config/manifests/hosts.pp new file mode 100644 index 00000000..08890a5d --- /dev/null +++ b/puppet/modules/site_config/manifests/hosts.pp @@ -0,0 +1,7 @@ +class site_config::hosts { + + file { '/etc/hosts': + content => template('site_config/hosts'), + mode => '0644', owner => root, group => root; + } +} diff --git a/puppet/modules/site_config/manifests/init.pp b/puppet/modules/site_config/manifests/init.pp index 7f67ad4e..268ff2fc 100644 --- a/puppet/modules/site_config/manifests/init.pp +++ b/puppet/modules/site_config/manifests/init.pp @@ -11,4 +11,7 @@ class site_config { # configure /etc/resolv.conf include site_config::resolvconf + + # configure /etc/hosts + include site_config::hosts } diff --git a/puppet/modules/site_config/templates/hosts b/puppet/modules/site_config/templates/hosts new file mode 100644 index 00000000..1a12addc --- /dev/null +++ b/puppet/modules/site_config/templates/hosts @@ -0,0 +1,11 @@ +# This file is managed by puppet, any changes will be overwritten! + +127.0.0.1 localhost +<%= scope.function_hiera('hosts') %> + +# The following lines are desirable for IPv6 capable hosts +::1 ip6-localhost ip6-loopback +fe00::0 ip6-localnet +ff00::0 ip6-mcastprefix +ff02::1 ip6-allnodes +ff02::2 ip6-allrouters |