aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/defaults.pp
blob: 9273a627f185ceb662d7b3cd448d51904d819552 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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   => '0644',
}

Group {
    ensure => present,
}

User {
    ensure     => present,
    managehome => true,
    shell      => '/bin/bash',
}

Service {
    ensure => running,
}

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