]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - modules/base_installation/manifests/package_managers.pp
Move todos to readme.md and add first documentation
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / package_managers.pp
CommitLineData
7fed35a4
IB
1class base_installation::package_managers inherits base_installation {
2 file { '/etc/pacman.d/mirrorlist':
3 ensure => "present",
4 path => "/etc/pacman.d/mirrorlist",
5 source => 'puppet:///modules/base_installation/package_managers/mirrorlist',
6 mode => "0644",
7 owner => "root",
8 group => "root"
9 }
10
11 class { 'pacman':
12 color => true,
13 usesyslog => true,
14 }
15
16 pacman::repo { 'multilib':
17 order => 15,
18 include => '/etc/pacman.d/mirrorlist'
19 }
20
d8f933bd
IB
21 pacman::repo { 'immae':
22 order => 0,
23 server => 'https://git.immae.eu/releases/packages/',
24 siglevel => 'Optional'
25 }
26
7fed35a4
IB
27 class { 'aur': }
28
29 contain "pacman"
30 contain "aur"
31}