dev/provisioning/modules/yum/manifests/plugin/versionlock.pp
changeset 28 b0b56e0f8c7f
equal deleted inserted replaced
27:a2342f26c9de 28:b0b56e0f8c7f
       
     1 # Class: yum::plugin::versionlock
       
     2 #
       
     3 # This class installs versionlock plugin
       
     4 #
       
     5 # Parameters:
       
     6 #   [*ensure*] - specifies if versionlock should be present or absent
       
     7 #
       
     8 # Actions:
       
     9 #
       
    10 # Requires:
       
    11 #
       
    12 # Sample usage:
       
    13 #   include yum::plugin::versionlock
       
    14 #
       
    15 class yum::plugin::versionlock (
       
    16   $ensure = present
       
    17 ) {
       
    18   yum::plugin { 'versionlock':
       
    19     ensure  => $ensure,
       
    20   }
       
    21 }