summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/slow.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-01-28 00:04:10 +0100
committervarac <varacanero@zeromail.org>2016-01-28 23:52:41 +0100
commita8343508a6ced1dcbca621ad4c6f3ac39676326b (patch)
treebe4c0b141f9fb1647841c6ac65a9169d8faaf2e3 /puppet/modules/site_config/manifests/slow.pp
parent54bd11793c13140651d908db7f88d550712ee85a (diff)
[feat] Fix fast deploy using 'leap deploy --fast'
This worked before, but somehow stopped working. We need to include 'site_config::slow' top-level scope instead of including it in 'site_config::default', because otherwise it would get tagged with 'leap_base', and would be included always. This way 'site_config::slow' gets included by default, but can be excluded by using 'leap deploy --fast'. See https://leap.se/en/docs/platform/details/under-the-hood#tags - Resolves: #7844
Diffstat (limited to 'puppet/modules/site_config/manifests/slow.pp')
-rw-r--r--puppet/modules/site_config/manifests/slow.pp2
1 files changed, 2 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/slow.pp b/puppet/modules/site_config/manifests/slow.pp
index 3650eb19..de276bc3 100644
--- a/puppet/modules/site_config/manifests/slow.pp
+++ b/puppet/modules/site_config/manifests/slow.pp
@@ -3,5 +3,7 @@
# the "--fast" parameter
class site_config::slow {
tag 'leap_slow'
+
+ include apt::update
class { 'site_apt::dist_upgrade': }
}