augeas: Initial version of augeas module
This commit is contained in:
parent
00572cc15e
commit
af7f8a46c6
1 changed files with 15 additions and 0 deletions
15
augeas/manifests/init.pp
Normal file
15
augeas/manifests/init.pp
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# Install augeas tools.
|
||||||
|
#
|
||||||
|
class augeas {
|
||||||
|
|
||||||
|
$package = $::operatingsystem ? {
|
||||||
|
'ubuntu' => 'augeas-tools',
|
||||||
|
default => 'augeas',
|
||||||
|
}
|
||||||
|
|
||||||
|
package { 'augeas':
|
||||||
|
ensure => installed,
|
||||||
|
name => $package,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue