summaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-13 01:46:04 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-13 01:46:04 -0500
commit7da364ee4b05870e85ef048709f53ae6b53fbe1a (patch)
tree90afdb212d17bf9ff330f7584a200228c7ebfff8 /manifests
parent1acb30eab2b85c63f8bbdf908cb2ef3a955918c3 (diff)
downloadpuppet-tozt-7da364ee4b05870e85ef048709f53ae6b53fbe1a.tar.gz
puppet-tozt-7da364ee4b05870e85ef048709f53ae6b53fbe1a.zip
set defaults even earlier
Diffstat (limited to 'manifests')
-rw-r--r--manifests/tozt.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/tozt.pp b/manifests/tozt.pp
index c0e6793..a79bcdb 100644
--- a/manifests/tozt.pp
+++ b/manifests/tozt.pp
@@ -2,6 +2,12 @@ node 'tozt.localdomain' {
$default_user = 'doy'
$persistent_data = '/media/persistent'
+ Package::Makepkg {
+ build_user => $default_user,
+ }
+
+ Base::User[$default_user] -> Package::Makepkg<| build_user == $default_user |>
+
include tozt::persistent
class { 'base':
default_user => $default_user,
@@ -9,12 +15,6 @@ node 'tozt.localdomain' {
}
Class['tozt::persistent'] -> Class['base']
- Package::Makepkg {
- build_user => $default_user,
- }
-
- Base::User[$default_user] -> Package::Makepkg<| build_user == $default_user |>
-
include tozt::backups
include tozt::git
include tozt::pass