mirror of
https://github.com/krislamo/puppet-rsnapshot
synced 2024-11-10 08:10:34 +00:00
15 lines
263 B
Puppet
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,
|
|
}
|
|
|
|
}
|
|
|