summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/arch_ports.pp15
1 files changed, 0 insertions, 15 deletions
diff --git a/manifests/arch_ports.pp b/manifests/arch_ports.pp
deleted file mode 100644
index 2720ebe..0000000
--- a/manifests/arch_ports.pp
+++ /dev/null
@@ -1,15 +0,0 @@
-# "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| {
- vcsrepo { "${location}/${repo}":
- ensure => present,
- provider => 'git',
- source => "https://github.com/archlinux/svntogit-${repo}",
- }
- }
-}