diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-08-10 00:07:27 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-08-10 01:35:50 +0200 |
commit | 8ed6fb29b46bbac3f28adc0d0918a71b6a694322 (patch) | |
tree | aa3f985daf920bf8a765a652354a682804feee07 /modules/base_configuration | |
parent | 919d772aaa9bb6f298b1d0a433b6b32d15c0410f (diff) | |
download | Puppet-8ed6fb29b46bbac3f28adc0d0918a71b6a694322.tar.gz Puppet-8ed6fb29b46bbac3f28adc0d0918a71b6a694322.tar.zst Puppet-8ed6fb29b46bbac3f28adc0d0918a71b6a694322.zip |
Add pacman configuration
Diffstat (limited to 'modules/base_configuration')
-rw-r--r-- | modules/base_configuration/manifests/init.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/base_configuration/manifests/init.pp b/modules/base_configuration/manifests/init.pp index 4c6ca1e..dca17b3 100644 --- a/modules/base_configuration/manifests/init.pp +++ b/modules/base_configuration/manifests/init.pp | |||
@@ -49,4 +49,13 @@ class base_configuration ( | |||
49 | 'Subsystem' => 'sftp /usr/lib/openssh/sftp-server', | 49 | 'Subsystem' => 'sftp /usr/lib/openssh/sftp-server', |
50 | } | 50 | } |
51 | } | 51 | } |
52 | |||
53 | class { 'pacman': | ||
54 | color => true, | ||
55 | } | ||
56 | |||
57 | pacman::repo { 'multilib': | ||
58 | order => 15, | ||
59 | include => '/etc/pacman.d/mirrorlist' | ||
60 | } | ||
52 | } | 61 | } |