mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-12 18:50:11 +02:00
14 lines
141 B
Puppet
14 lines
141 B
Puppet
# Class: git
|
|
#
|
|
# This class installs git.
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
# include git
|
|
#
|
|
class git {
|
|
package { 'git':
|
|
ensure => latest,
|
|
}
|
|
}
|