Puppet Class: archlinux_workstation::repos::multilib
- Defined in:
- manifests/repos/multilib.pp
Overview
Sets up the Multilib pacman repository.
5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/repos/multilib.pp', line 5
class archlinux_workstation::repos::multilib {
if ! defined(Class['archlinux_workstation']) {
fail('You must include the base archlinux_workstation class before using any subclasses')
}
archlinux_workstation::pacman_repo { 'multilib':
include_file => '/etc/pacman.d/mirrorlist'
}
}
|