aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-03-11 19:14:56 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-03-11 19:14:56 +0100
commitf419ae0904139ea40e2abbbd2e9127905a5a9c95 (patch)
tree551db957287275ea8db865f104000dc739634568 /modules
parent5081257003019a96fcf96d55cfd6d0049a31fa43 (diff)
parentdf0c42af3366f013afa1ee13eed04307260beae2 (diff)
downloadPuppet-f419ae0904139ea40e2abbbd2e9127905a5a9c95.tar.gz
Puppet-f419ae0904139ea40e2abbbd2e9127905a5a9c95.tar.zst
Puppet-f419ae0904139ea40e2abbbd2e9127905a5a9c95.zip
Merge branch 'cloud_ovh' into dev
Diffstat (limited to 'modules')
-rw-r--r--modules/base_installation/manifests/system_config.pp10
1 files changed, 2 insertions, 8 deletions
diff --git a/modules/base_installation/manifests/system_config.pp b/modules/base_installation/manifests/system_config.pp
index ccc5dcc..c6da26b 100644
--- a/modules/base_installation/manifests/system_config.pp
+++ b/modules/base_installation/manifests/system_config.pp
@@ -13,20 +13,14 @@ class base_installation::system_config inherits base_installation {
13 } 13 }
14 14
15 file { '/etc/hostname': 15 file { '/etc/hostname':
16 content => "$base_installation::system_hostname\n", 16 content => "$hostname\n",
17 } 17 }
18 18
19 exec { "set_hostname": 19 exec { "set_hostname":
20 command => "/usr/bin/hostnamectl set-hostname $base_installation::system_hostname", 20 command => "/usr/bin/hostnamectl set-hostname $hostname",
21 refreshonly => true, 21 refreshonly => true,
22 subscribe => File["/etc/hostname"], 22 subscribe => File["/etc/hostname"],
23 returns => [0, 1], 23 returns => [0, 1],
24 } 24 }
25 25
26 # TODO: find a way to ensure that /etc/hostname doesn't change
27 # exec { "set_hostname_firstboot":
28 # command => "/usr/bin/systemd-firstboot --hostname=$base_installation::system_hostname",
29 # creates => "/etc/hostname",
30 # }
31
32} 26}