From 87f0ebb735e85213080117f5fed40edb3dc2100b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 10 Aug 2016 22:40:48 +0200 Subject: [PATCH] Add missing services --- modules/base_configuration/manifests/init.pp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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': -- 2.41.0