]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/commitdiff
Add missing services
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 10 Aug 2016 20:40:48 +0000 (22:40 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 10 Aug 2016 20:44:09 +0000 (22:44 +0200)
modules/base_configuration/manifests/init.pp

index 2b20a0e89908e0aabc688d5690a8eaa1ea271dfb..8b4dd376a0c2c6e0f428962c93bc671857a24022 100644 (file)
@@ -3,6 +3,19 @@ class base_configuration (
   $username = "immae",
   $userid   = 1000
 ) {
+  service { "sshd":
+    ensure => "running",
+    enable => true,
+  }
+  service { "systemd-networkd.socket":
+    ensure => "running",
+    enable => true,
+  }
+  service { "systemd-networkd":
+    ensure => "running",
+    enable => true,
+  }
+
   unless empty($hostname) {
     class { 'systemd::hostname':
       hostname => $hostname
@@ -51,7 +64,8 @@ class base_configuration (
   }
 
   class { 'pacman':
-    color => true,
+    color     => true,
+    usesyslog => true,
   }
 
   pacman::repo { 'multilib':