diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/install_ovh_from_scratch.pp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/manifests/install_ovh_from_scratch.pp b/manifests/install_ovh_from_scratch.pp new file mode 100644 index 0000000..4888cfc --- /dev/null +++ b/manifests/install_ovh_from_scratch.pp | |||
@@ -0,0 +1,20 @@ | |||
1 | node 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 | } | ||