summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/arch_builder.pp8
1 files changed, 6 insertions, 2 deletions
diff --git a/manifests/arch_builder.pp b/manifests/arch_builder.pp
index 5d3fc23..69b03c2 100644
--- a/manifests/arch_builder.pp
+++ b/manifests/arch_builder.pp
@@ -5,14 +5,18 @@ class profiles::arch_builder {
ensure_packages([
'base',
'base-devel',
- # 'auracle-git',
+ # Note that auracle git is NOT in the standard repos, and needs to
+ # be manually bootstraped to work
+ 'auracle-git',
])
$aur_builder = 'aur-builder'
+ $aur_home = '/usr/local/aur'
user { $aur_builder:
system => true,
- home => '/usr/local/aur',
+ home => $aur_home,
+ shell => '/usr/bin/nologin',
}
file { '/etc/sudoers.d/aur_builder':