X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2FPuppet.git;a=blobdiff_plain;f=manifests%2Finstall_ovh_from_scratch.pp;fp=manifests%2Finstall_ovh_from_scratch.pp;h=4888cfcee33f30dd5c99e5d67b637cfb9a8c6fb6;hp=0000000000000000000000000000000000000000;hb=ba2cf1b5d938810077b0fd73844faf432e8e8f9d;hpb=eb9fec57fcfcc84f0e310e343167a10fb13ca0c8 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 @@ +node default { + include stdlib + + stage { 'base_configuration': } + stage { 'base_packages': } + Stage["setup"] + -> Stage['base_packages'] + -> Stage['base_configuration'] + -> Stage['main'] + + class { 'base_packages': + stage => "base_packages" + } + class { 'base_configuration': + stage => "base_configuration", + code_path => "/etc/puppetlabs/code", + device => "/dev/sdb", + hostname => 'new.immae.eu', + } +}