Missing ","

This commit is contained in:
Patrik Lundin 2024-10-31 15:30:36 +01:00
parent e15225d1b5
commit 0ad91d34d1
Signed by: patlu
GPG key ID: A0A812BA2249F294

View file

@ -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,
}