Documentation by YARD 0.9.26
+Alphabetic Index
+ +Puppet Class Listing A-Z
+ + +
+
+
+
|
+
File Listing
+-
+
+
+
- README + + +
diff --git a/doc/_index.html b/doc/_index.html new file mode 100644 index 0000000..1b1e69f --- /dev/null +++ b/doc/_index.html @@ -0,0 +1,148 @@ + + +
+ + +
+
+
+
|
+
| t |
+ + + +6 +7 +8+ |
+
+ # File 'manifests/init.pp', line 6
+
+class cd_alloy {
+ include cd_alloy::params
+}
+ |
+
cd_alloy::config.pp Module name: cd_alloy Author: Arne Teuke +(arne_teuke@confdroid.com)
+ +
+ + + +6 +7 +8 +9 +10 +11 +12+ |
+
+ # File 'manifests/main/config.pp', line 6
+
+class cd_alloy::config (
+
+) inherits cd_alloy::params {
+
+ include cd_alloy::yumrepo
+
+}
+ |
+
Module name: cd_alloy Author: Arne Teuke (arne_teuke@confdroid.com)
+ +
+ + + +5 +6 +7 +8 +9 +10 +11+ |
+
+ # File 'manifests/main/config.pp', line 5
+
+class cd_alloy::main::config (
+
+) inherits cd_alloy::params {
+
+ include cd_alloy::main::service
+
+}
+ |
+
Module name: cd_alloy Author: Arne Teuke (arne_teuke@confdroid.com)
+ +
+ + + +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23+ |
+
+ # File 'manifests/main/dirs.pp', line 5
+
+class cd_alloy::main::dirs (
+
+) inherits cd_alloy::params {
+
+ require cd_alloy::main::install
+
+ # main config dir
+ file { $ay_main_dir:
+ ensure => directory,
+ path => $ay_main_dir,
+ owner => 'root',
+ group => 'root',
+ mode => '0770',
+ selrange => s0,
+ selrole => object_r,
+ seltype => etc_t,
+ seluser => system_u,
+ }
+}
+ |
+
Module name: cd_alloy Author: Arne Teuke (arne_teuke@confdroid.com)
+ +
+ + + +5 +6 +7 +8 +9 +10 +11+ |
+
+ # File 'manifests/main/files.pp', line 5
+
+class cd_alloy::main::files (
+
+) inherits cd_alloy::params {
+
+ require cd_alloy::main::dirs
+
+}
+ |
+
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 {$repackages:
+ ensure => $pkg_ensure,
+ }
+
+}
+ |
+
Module name: cd_alloy Author: Arne Teuke (arne_teuke@confdroid.com)
+ +
+ + + +5 +6 +7 +8 +9 +10 +11+ |
+
+ # File 'manifests/main/service.pp', line 5
+
+class cd_alloy::main::service (
+
+) inherits cd_alloy::params {
+
+ require cd_alloy::main::files
+
+}
+ |
+
cd_alloy::yumrepo.pp Module name: cd_alloy Author: Arne Teuke +(arne_teuke@confdroid.com)
+ +
+ + + +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21+ |
+
+ # File 'manifests/main/yumrepo.pp', line 6
+
+class cd_alloy::main::yumrepo (
+
+) inherits cd_alloy::params {
+
+ # test
+ yumrepo { 'grafana':
+ ensure => 'present',
+ name => 'grafana',
+ descr => 'grafana',
+ baseurl => 'https://packages.grafana.com/oss/rpm',
+ gpgkey => 'https://packages.grafana.com/gpg.key',
+ enabled => '1',
+ gpgcheck => '1',
+ target => '/etc/yum.repo.d/grafana.repo',
+ }
+}
+ |
+
cd_alloy::params.pp Module name: cd_alloy Author: Arne Teuke +(arne_teuke@confdroid.com)
+ +
+ + + +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25+ |
+
+ # File 'manifests/params.pp', line 8
+
+class cd_alloy::params (
+
+$reqpackages = 'alloy',
+$pkg_ensure = 'latest',
+
+) {
+
+# service
+$ay_service = 'alloy'
+
+# dirs
+$ay_main_dir = '/etc/alloy'
+
+
+ # includes must be last
+ include cd_alloy::main::config
+
+}
+ |
+
cd_alloy::yumrepo.pp Module name: cd_alloy Author: Arne Teuke +(arne_teuke@confdroid.com)
+ +
+ + + +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21+ |
+
+ # File 'manifests/main/yumrepo.pp', line 6
+
+class cd_alloy::yumrepo (
+
+) inherits cd_alloy::params {
+
+ # test
+ yumrepo { 'grafana':
+ ensure => 'present',
+ name => 'grafana',
+ descr => 'grafana',
+ baseurl => 'https://packages.grafana.com/oss/rpm',
+ gpgkey => 'https://packages.grafana.com/gpg.key',
+ enabled => '1',
+ gpgcheck => '1',
+ target => '/etc/yum.repo.d/grafana.repo',
+ }
+}
+ |
+