diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-04-15 01:38:27 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-04-15 01:38:27 +0200 |
commit | 16d919073a2616f2b1f60ac29560d5cb5e8595a0 (patch) | |
tree | f541f247569d2f43d4a31368cdbe8b71b51cc68f | |
parent | b840f71b9e80650680b374e761a67df5c9c8901f (diff) | |
download | puppet.LW-16d919073a2616f2b1f60ac29560d5cb5e8595a0.tar.gz puppet.LW-16d919073a2616f2b1f60ac29560d5cb5e8595a0.tar.bz2 puppet.LW-16d919073a2616f2b1f60ac29560d5cb5e8595a0.zip |
site.pp: Enforce apt-get update on every pupppet run.
-rw-r--r-- | code/environments/production/manifests/site.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 1af80c0..166125a 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -1,3 +1,9 @@ +class { 'apt': + update => { + frequency => 'always', + }, +} + include apt $apt_origins = [ |