]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/pacman/manifests/install.pp
Use git.immae.eu
[perso/Immae/Projets/Puppet.git] / modules / pacman / manifests / install.pp
1 # Class: pacman::install
2 #
3 # This class ensures pacman is installed
4 #
5 class pacman::install (
6 $package_ensure = $pacman::package_ensure,
7 $package_name = $pacman::package_name,) inherits pacman {
8 package { 'pacman':
9 ensure => $package_ensure,
10 name => $package_name,
11 }
12
13 }