25 lines
607 B
Puppet
25 lines
607 B
Puppet
# Class: profiles::git::git
|
|
#
|
|
# This class ensures that the Git package is installed.
|
|
#
|
|
# It uses the 'package' resource to manage the Git package,
|
|
# and will ensure that it is installed. This class does not
|
|
# manage any configurations related to Git, it only ensures
|
|
# that the package is installed.
|
|
#
|
|
# The class does not take any parameters.
|
|
#
|
|
# Example usage:
|
|
# --------------
|
|
# To use this class, you simply need to declare it in your manifest:
|
|
#
|
|
# include profiles::git::git
|
|
#
|
|
# You do not need to pass any parameters.
|
|
#
|
|
class profiles::git::git {
|
|
package { 'git':
|
|
ensure => installed,
|
|
}
|
|
}
|