summaryrefslogtreecommitdiff
path: root/manifests/repo.pp
blob: afe88d203989d58ed9d4e8b41061e055ffcc734d (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.gandalf.adrift.space/arch',
        sig_level => 'Optional',
      }
    }
  }
}