- First implementation of filter for languages.
- Language is now an array in the document
- various corrections linked to the above change
- Simplify the IndexDocumet loop
# Class: yum::plugin::versionlock
#
# This class installs versionlock plugin
#
# Parameters:
# [*ensure*] - specifies if versionlock should be present or absent
#
# Actions:
#
# Requires:
#
# Sample usage:
# include yum::plugin::versionlock
#
class yum::plugin::versionlock (
$ensure = present
) {
yum::plugin { 'versionlock':
ensure => $ensure,
}
}