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

15 lines
263 B
ObjectPascal
Raw Normal View History

2015-12-19 10:16:05 +00:00
# == Class: rsnapshot::install
#
# Installs the rsnapshot package.
2016-01-18 18:54:53 +00:00
class rsnapshot::install {
2015-12-21 10:43:50 +00:00
case $::operatingsystem {
/^CentOS$/: { include epel }
default: {}
}
2015-12-19 10:16:05 +00:00
package { $rsnapshot::package_name:
ensure => $rsnapshot::package_ensure,
}
}