aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/defaults.pp
blob: 39e0cabd74758cdf1396f3bc5da9b16562327281 (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
# to not repeat the settings everywhere
Exec { 
    path => "/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin/", 
}

Package {
    ensure => "present",
}

File {
    ensure => "present",
    owner => root,
    group => root,
    # on directory, this will be 755
    # see http://docs.puppetlabs.com/references/2.7.0/type.html#file
    mode => 644,
}

define local_script($content, 
                    $owner = "root", 
                    $group = 'root', 
                    $mode = '755') {
    file { "/usr/local/bin/$name":
        owner => $owner,
        group => $group,
        mode => $mode,
        content => $content,
    }
}