From ba2cf1b5d938810077b0fd73844faf432e8e8f9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Mon, 14 Aug 2017 19:02:29 +0200 Subject: Install OVH vps from scratch --- manifests/install_ovh_from_scratch.pp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 manifests/install_ovh_from_scratch.pp (limited to 'manifests') 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', + } +} -- cgit v1.2.3