aboutsummaryrefslogtreecommitdiff
path: root/manifests/install_ovh.pp
blob: 41a9ad22023c9def3ab0da241fcad4d8f79f95bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
node default {
    include stdlib

    class { 'ovh_cleanup': }
    class { 'base_packages': }
    class { 'locales': }
    class { 'cron_puppet': }
    class { 'base_configuration':
      hostname => 'new.immae.eu'
    }

    reboot { 'after_run':
      apply => 'finished'
    }
}