summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/init.pp
blob: c898da53365c9c74d9b5ae79afdd3fc52c816b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class base($extra_script="") {
  class { 'base::bootstrap':
    extra_script => $extra_script;
  }
  contain base::operatingsystem
  contain base::services
  contain base::tools
  contain base::users
  contain base::vpn
}