summaryrefslogtreecommitdiff
path: root/manifests/arch_ports.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-02-09 18:39:03 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-02-09 18:39:03 +0100
commit9fd72cff6caced71bcd56a2db53327c8a9796001 (patch)
treec6b84eb55a56f867006d160c81774fdfda9198d1 /manifests/arch_ports.pp
parentLetsencrypt more OS:s. (diff)
downloadprofiles-9fd72cff6caced71bcd56a2db53327c8a9796001.tar.gz
profiles-9fd72cff6caced71bcd56a2db53327c8a9796001.tar.xz
Add profile arch_ports.
Diffstat (limited to 'manifests/arch_ports.pp')
-rw-r--r--manifests/arch_ports.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/manifests/arch_ports.pp b/manifests/arch_ports.pp
new file mode 100644
index 0000000..bb6df0d
--- /dev/null
+++ b/manifests/arch_ports.pp
@@ -0,0 +1,15 @@
+# "ports" tree for arch linux, providing all PKGBUILD sources for the
+# public repos.
+# https://archlinux.org/svn/
+class profiles::arch_ports (
+ String $location = '/usr/local/arch',
+) {
+
+ [ 'packages', 'community' ].each |$repo| {
+ vcs_repo { "${location}/${repo}":
+ ensure => present,
+ provider => 'git',
+ source => "https://github.com/archlinux/svntogit-${repo}",
+ }
+ }
+}