From: Ismaƫl Bouya Date: Wed, 10 Aug 2016 20:40:48 +0000 (+0200) Subject: Add missing services X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=87f0ebb735e85213080117f5fed40edb3dc2100b;p=perso%2FImmae%2FProjets%2FPuppet.git Add missing services --- diff --git a/modules/base_configuration/manifests/init.pp b/modules/base_configuration/manifests/init.pp index 2b20a0e..8b4dd37 100644 --- a/modules/base_configuration/manifests/init.pp +++ b/modules/base_configuration/manifests/init.pp @@ -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':