aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 0dbe627f354ff4813ca625ea8f25cc81d29ea298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import "*.pp"

class loginrecords {

    # Default settings
    if $disable_faillog == '' {
        $disable_faillog = 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.")
        }
    }

}