summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: ef83b3ebd223261ef4c11c6100ab3c6135916008 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# modules/resolvconf/manifests/init.pp - manage resolvconf stuff
# Copyright (C) 2007 admin@immerda.ch
# GPLv3
# adapted by Puzzle ITC - haerry+puppet(at)puzzle.ch

# modules_dir { "resolvconf": }

class resolvconf {
    $real_resolvconf_domain = $resolvconf_domain ? {
        ''  => 'rz.puzzle.ch',
        default => $resolvconf_domain,
    }
    $real_resolvconf_search = $resolvconf_search ? {
        ''  => 'rz.puzzle.ch',
        default => $resolvconf_search,
    }
    $real_resolvconf_nameservers = $resolvconf_nameservers ? {
        ''  => '195.141.101.81:195.141.101.82',
        default => $resolvconf_nameservers,
    }

    file { '/etc/resolv.conf':
        path => '/etc/resolv.conf',
        owner => root,
        group => 0,
        mode => 444,
        content => template("resolvconf/resolvconf.erb")
    }
}