summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-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}",
+ }
+ }
+}