summaryrefslogtreecommitdiff
path: root/manifests/repo.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-24 11:11:45 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-02-09 18:06:12 +0100
commit7f9786da29b414d94af99c77be7fe16a6e919fba (patch)
tree29b378d810ccc0977d90a1eb86a01305a322b3b8 /manifests/repo.pp
parentprofiles::puppetagent add extra_args param. (diff)
downloadprofiles-7f9786da29b414d94af99c77be7fe16a6e919fba.tar.gz
profiles-7f9786da29b414d94af99c77be7fe16a6e919fba.tar.xz
Broke profiles into parts.
Diffstat (limited to 'manifests/repo.pp')
-rw-r--r--manifests/repo.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/repo.pp b/manifests/repo.pp
new file mode 100644
index 0000000..afe88d2
--- /dev/null
+++ b/manifests/repo.pp
@@ -0,0 +1,12 @@
+# Configure private custom repo for those dists that support it
+class profiles::repo {
+ case $facts['osfamily'] {
+ 'Archlinux': {
+ pacman::repo { 'adrift-space':
+ ensure => present,
+ server => 'http://repo.gandalf.adrift.space/arch',
+ sig_level => 'Optional',
+ }
+ }
+ }
+}