aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 6826c32d07855bdfe5ad1fa63d561c43a5fe9f9a (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
import "*.pp"

class loginrecords {

    # Default settings
    if $disable_faillog == '' {
        $disable_faillog = true
    }
    if $disable_lastlog == '' {
        $disable_lastlog = true
    }

    # Include main class
    case $kernel {
        "Linux": {
            case  $operatingsystem {
                "debian", "ubuntu": { include loginrecords::debian }
                default:            { include loginrecords::base   }
            }
        }
        default: {
            err("Kernel $kernel is not supported.")
        }
    }

}