summaryrefslogtreecommitdiff
path: root/manifests/repo.pp
blob: 441330ce7c74bebacae38d1a8c2b29695463704f (plain)
1
2
3
4
5
6
7
8
9
10
11
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.adrift.space/arch',
        sig_level => 'Optional',
      }
    }
  }
}