From c4b1bc9f144b05f769f3fb41617a18cffc49bec4 Mon Sep 17 00:00:00 2001 From: Jenkins ConfDroid Date: Sun, 23 Feb 2025 17:36:58 +0100 Subject: [PATCH] recommit for updates in build 20 --- doc/_index.html | 5 + doc/puppet_class_list.html | 11 +- .../cd_alloy_3A_3Amain_3A_3Aconfig.html | 2 +- .../cd_alloy_3A_3Amain_3A_3Ainstall.html | 141 ++++++++++++++++++ doc/puppet_classes/cd_alloy_3A_3Aparams.html | 56 ++++++- 5 files changed, 208 insertions(+), 7 deletions(-) create mode 100644 doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Ainstall.html diff --git a/doc/_index.html b/doc/_index.html index bfbe5c3..d35a146 100644 --- a/doc/_index.html +++ b/doc/_index.html @@ -78,6 +78,11 @@ +
  • + cd_alloy::main::install + +
  • +
  • cd_alloy::main::yumrepo diff --git a/doc/puppet_class_list.html b/doc/puppet_class_list.html index d8fffc7..af3f152 100644 --- a/doc/puppet_class_list.html +++ b/doc/puppet_class_list.html @@ -50,14 +50,21 @@
  • -
  • +
  • + +
  • + + +
  • -
  • +
  • diff --git a/doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Aconfig.html b/doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Aconfig.html index 6c31aab..644a3b6 100644 --- a/doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Aconfig.html +++ b/doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Aconfig.html @@ -115,7 +115,7 @@ class cd_alloy::main::config ( ) inherits cd_alloy::params { - include cd_alloy::main::yumrepo + include cd_alloy::main::install } diff --git a/doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Ainstall.html b/doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Ainstall.html new file mode 100644 index 0000000..3b9b35e --- /dev/null +++ b/doc/puppet_classes/cd_alloy_3A_3Amain_3A_3Ainstall.html @@ -0,0 +1,141 @@ + + + + + + + Puppet Class: cd_alloy::main::install + + — Documentation by YARD 0.9.26 + + + + + + + + + + + + + + + + + + + +
    + + +

    Puppet Class: cd_alloy::main::install

    +
    + +
    +
    Inherits:
    +
    cd_alloy::params
    +
    + + +
    +
    Defined in:
    +
    + manifests/main/install.pp +
    +
    +
    + +

    Summary

    + Class manages module logic for the cd_alloy module + +

    Overview

    +
    +
    + +

    Module name: cd_alloy Author: Arne Teuke (arne_teuke@confdroid.com)

    + +
    +
    + + +
    + + + +
    + + + + + +
    +
    +
    +
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +
    +
    # File 'manifests/main/install.pp', line 5
    +
    +class cd_alloy::main::install (
    +
    +) inherits cd_alloy::params {
    +
    +  require cd_alloy::main::yumrepo
    +
    +  package {$reqpackages:
    +    ensure => $pkg_ensure,
    +  }
    +
    +}
    +
    +
    +
    + + + +
    + + \ No newline at end of file diff --git a/doc/puppet_classes/cd_alloy_3A_3Aparams.html b/doc/puppet_classes/cd_alloy_3A_3Aparams.html index 23deff2..eb35555 100644 --- a/doc/puppet_classes/cd_alloy_3A_3Aparams.html +++ b/doc/puppet_classes/cd_alloy_3A_3Aparams.html @@ -69,6 +69,8 @@ cd_alloy::main::config
    + cd_alloy::main::install
    + cd_alloy::main::yumrepo
    @@ -97,7 +99,47 @@
    +

    Parameters:

    +
      +
    • + + reqpackages + + + (string) + + + (defaults to: 'alloy') + + + — +
      +

      which packages to install

      +
      + +
    • + +
    • + + pkg_ensure + + + (string) + + + (defaults to: 'latest') + + + — +
      +

      'latest' or 'present'

      +
      + +
    • + +
    +
    @@ -107,20 +149,26 @@
     
     
    -6
    -7
     8
     9
     10
     11
     12
    -13
    +13 +14 +15 +16 +17 +18 -
    # File 'manifests/params.pp', line 6
    +        
    # File 'manifests/params.pp', line 8
     
     class cd_alloy::params (
     
    +$reqpackages    = 'alloy',
    +$pkg_ensure     = 'latest',
    +
     ) {
     
       # includes must be last