mirror of
https://github.com/krislamo/puppet-rsnapshot
synced 2024-11-10 00:00:35 +00:00
12 lines
202 B
Puppet
12 lines
202 B
Puppet
# == Class: rsnapshot::install
|
|
#
|
|
# Installs the rsnapshot package.
|
|
class rsnapshot::install inherits rsnapshot {
|
|
|
|
package { $rsnapshot::package_name:
|
|
ensure => $rsnapshot::package_ensure,
|
|
}
|
|
|
|
}
|
|
|