From 0ad91d34d1b5f21d697e64b0919354d03dffec6f Mon Sep 17 00:00:00 2001 From: Patrik Lundin Date: Thu, 31 Oct 2024 15:30:36 +0100 Subject: [PATCH] Missing "," --- global/overlay/etc/puppet/modules/cdn/manifests/cache.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp b/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp index f20ccdf..94ebceb 100644 --- a/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp +++ b/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp @@ -140,12 +140,12 @@ class cdn::cache( exec { "curl -LO ${sunet_cdnp_url}": creates => "${sunet_cdnp_dir}/${sunet_cdnp_file}", - cwd => $sunet_cdnp_dir + cwd => $sunet_cdnp_dir, notify => Exec["tar -xzf ${sunet_cdnp_file} sunet-cdnp"], } exec { "tar -xzf ${sunet_cdnp_file} sunet-cdnp": - cwd => $sunet_cdnp_dir + cwd => $sunet_cdnp_dir, refreshonly => true, }