diff options
-rw-r--r-- | environments/production/data/common.yaml | 3 | ||||
-rw-r--r-- | environments/production/data/types/vps-ovhssd-1.yaml | 4 | ||||
-rw-r--r-- | manifests/install_ovh_from_scratch.pp | 8 | ||||
-rw-r--r-- | manifests/site.pp | 12 |
4 files changed, 19 insertions, 8 deletions
diff --git a/environments/production/data/common.yaml b/environments/production/data/common.yaml index e129d47..01bbcac 100644 --- a/environments/production/data/common.yaml +++ b/environments/production/data/common.yaml | |||
@@ -1,4 +1,7 @@ | |||
1 | --- | 1 | --- |
2 | classes: | ||
3 | stdlib: ~ | ||
4 | |||
2 | base_installation::puppet_code_path: "/etc/puppetlabs/code" | 5 | base_installation::puppet_code_path: "/etc/puppetlabs/code" |
3 | base_installation::system_locales: ["fr_FR.UTF-8", "en_US.UTF-8"] | 6 | base_installation::system_locales: ["fr_FR.UTF-8", "en_US.UTF-8"] |
4 | base_installation::system_timezone: "Europe/Paris" | 7 | base_installation::system_timezone: "Europe/Paris" |
diff --git a/environments/production/data/types/vps-ovhssd-1.yaml b/environments/production/data/types/vps-ovhssd-1.yaml index 72f3820..eb4934b 100644 --- a/environments/production/data/types/vps-ovhssd-1.yaml +++ b/environments/production/data/types/vps-ovhssd-1.yaml | |||
@@ -1,3 +1,7 @@ | |||
1 | --- | 1 | --- |
2 | classes: | ||
3 | base_installation: | ||
4 | stage: "setup" | ||
5 | |||
2 | base_installation::system_hostname: "new.immae.eu" | 6 | base_installation::system_hostname: "new.immae.eu" |
3 | base_installation::grub_device: "/dev/sdb" | 7 | base_installation::grub_device: "/dev/sdb" |
diff --git a/manifests/install_ovh_from_scratch.pp b/manifests/install_ovh_from_scratch.pp deleted file mode 100644 index f5224fa..0000000 --- a/manifests/install_ovh_from_scratch.pp +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | node default { | ||
2 | include stdlib | ||
3 | |||
4 | class { 'base_installation': | ||
5 | stage => "setup", | ||
6 | grub_device => "/dev/sdb", | ||
7 | } | ||
8 | } | ||
diff --git a/manifests/site.pp b/manifests/site.pp new file mode 100644 index 0000000..f922d2b --- /dev/null +++ b/manifests/site.pp | |||
@@ -0,0 +1,12 @@ | |||
1 | node default { | ||
2 | lookup('classes', Hash, 'deep').each |$class_name, $class_hash| { | ||
3 | if empty($class_hash) { | ||
4 | include $class_name | ||
5 | } else { | ||
6 | class { $class_name: | ||
7 | * => $class_hash | ||
8 | } | ||
9 | } | ||
10 | |||
11 | } | ||
12 | } | ||