]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/resolv/manifests/init.pp
variable assignment does not clone string...
[dsa-puppet.git] / modules / resolv / manifests / init.pp
1 class resolv {
2
3         $ns   = hiera('nameservers')
4         $sp   = hiera('searchpaths')
5         $opts = hiera('resolvoptions')
6
7         file { '/etc/resolv.conf':
8                         content => template('resolv/resolv.conf.erb');
9         }
10 }