aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/defaults.pp
blob: c7b0dd858fd3bab699e962192d38f62cd3a51574 (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
# 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,
}