From d7713e71f81fea43a30209d14e5c7333a88163c3 Mon Sep 17 00:00:00 2001 From: Alexander Olofsson Date: Fri, 20 Sep 2024 16:25:07 +0200 Subject: [PATCH] Fix whitespace issues --- manifests/install/container_runtime.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/install/container_runtime.pp b/manifests/install/container_runtime.pp index 95e26b9..9c1eca2 100644 --- a/manifests/install/container_runtime.pp +++ b/manifests/install/container_runtime.pp @@ -52,13 +52,13 @@ require => Package['k8s container manager'], } - file { [ '/etc/crio', '/etc/crio/crio.conf.d']: + file { ['/etc/crio', '/etc/crio/crio.conf.d']: ensure => directory; } file { 'K8s crio cgroup manager': - path => '/etc/crio/crio.conf.d/10-systemd.conf', - content => "[crio.runtime]\ncgroup_manager = \"systemd\"", - # TODO + path => '/etc/crio/crio.conf.d/10-systemd.conf', + content => "[crio.runtime]\ncgroup_manager = \"systemd\"", + # TODO - Necessary/wanted to force it? # notify => Service[crio], } }