Puppet Class: archlinux_workstation::repos::jantman
- Defined in:
- manifests/repos/jantman.pp
Overview
Sets up jantman's personal pacman repository (archrepo.jasonantman.com/current). See that URL for a package index.
5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/repos/jantman.pp', line 5
class archlinux_workstation::repos::jantman {
if ! defined(Class['archlinux_workstation']) {
fail('You must include the base archlinux_workstation class before using any subclasses')
}
archlinux_workstation::pacman_repo { 'jantman':
server => 'http://archrepo.jasonantman.com/current',
}
}
|