summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-24 11:20:44 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-02-09 18:06:12 +0100
commit1bba8121dcfb0c852a076d747557d2227267f3e3 (patch)
treeda27cac6e06552e6697ad3eb303c10f80ea241f1
parentAdd profile arch_builder. (diff)
downloadprofiles-1bba8121dcfb0c852a076d747557d2227267f3e3.tar.gz
profiles-1bba8121dcfb0c852a076d747557d2227267f3e3.tar.xz
arch-builder work.
-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':