summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-03-21 15:27:31 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2023-03-21 15:30:04 +0100
commitaf464b1b09ed7d0276013b22d6a4b291135c3e1a (patch)
tree343974291e6e05bbdbc93f86baa6c68575b676ee /manifests
parentSpecify type for shiori::port. (diff)
downloadprofiles-af464b1b09ed7d0276013b22d6a4b291135c3e1a.tar.gz
profiles-af464b1b09ed7d0276013b22d6a4b291135c3e1a.tar.xz
Add common::archlinux.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/common/archlinux.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/common/archlinux.pp b/manifests/common/archlinux.pp
new file mode 100644
index 0000000..e86f3cb
--- /dev/null
+++ b/manifests/common/archlinux.pp
@@ -0,0 +1,10 @@
+class profiles::common::archlinux {
+ ensure_packages([
+ 'inetutils',
+ ])
+
+ class { 'pacman':
+ parallel_downloads => ceil($facts['processorcount'] / 2),
+ update => true,
+ }
+}