summaryrefslogtreecommitdiff
path: root/manifests/setup.pp
blob: 9f742fd7b59ed3ba6b62ab4058ca9f034bdd0c9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class nspawn::setup {

  # TODO find better file to use for containers

  file { '/usr/lib/systemd/resolv.conf':
    ensure => file,
    content => @(EOF)
      # File /usr/lib/systemd/resolv.conf managed by puppet
      # Local changes will be overwritten
      nameserver 10.0.0.40
      search adrift.space
      | EOF
  }


}