1
0
mirror of https://github.com/krislamo/puppet-rsnapshot synced 2024-09-20 01:10:35 +00:00
puppet-rsnapshot/manifests/install.pp
2016-01-18 19:54:53 +01:00

15 lines
263 B
Puppet

# == Class: rsnapshot::install
#
# Installs the rsnapshot package.
class rsnapshot::install {
case $::operatingsystem {
/^CentOS$/: { include epel }
default: {}
}
package { $rsnapshot::package_name:
ensure => $rsnapshot::package_ensure,
}
}