]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - manifests/install_ovh_from_scratch.pp
Install OVH vps from scratch
[perso/Immae/Projets/Puppet.git] / manifests / install_ovh_from_scratch.pp
CommitLineData
ba2cf1b5
IB
1node default {
2 include stdlib
3
4 stage { 'base_configuration': }
5 stage { 'base_packages': }
6 Stage["setup"]
7 -> Stage['base_packages']
8 -> Stage['base_configuration']
9 -> Stage['main']
10
11 class { 'base_packages':
12 stage => "base_packages"
13 }
14 class { 'base_configuration':
15 stage => "base_configuration",
16 code_path => "/etc/puppetlabs/code",
17 device => "/dev/sdb",
18 hostname => 'new.immae.eu',
19 }
20}