Documentation by YARD 0.9.36
-Alphabetic Index
- -Puppet Class Listing A-Z
- - -
-
-
-
|
-
File Listing
--
-
-
-
- README - - -
diff --git a/Jenkinsfile b/Jenkinsfile index 268d25e..9f2c26f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -118,6 +118,8 @@ pipeline { git branch -D development git branch -D jenkins-build-$BUILD_NUMBER git rm -f Jenkinsfile + git rm -r --cached .scannerwork || echo "No .scannerwork to remove from git" + git rm -r --cached .yardoc || echo "No .yardoc to remove from git" git rm -r --cached .vscode || echo "No .vscode to remove from git" git commit --amend --no-edit --allow-empty git remote add master https://sourcecode.confdroid.com/confdroid/confdroid_automatic.git diff --git a/doc/_index.html b/doc/_index.html deleted file mode 100644 index dff28cb..0000000 --- a/doc/_index.html +++ /dev/null @@ -1,143 +0,0 @@ - - -
- - -
-
-
-
|
-
| t |
- - - -6 -7 -8- |
-
- # File 'manifests/init.pp', line 6
-
-class confdroid_automatic {
- include confdroid_automatic::params
-}
- |
-
confdroid_automatic::main::config.pp Module name: confdroid_automatic Author: 12ww1160 (12ww1160@confdroid.com)
- -
- - - -6 -7 -8 -9 -10- |
-
- # File 'manifests/main/config.pp', line 6
-
-class confdroid_automatic::main::config (
-
-) inherits confdroid_automatic::params {
- include confdroid_automatic::main::service
-}
- |
-
confdroid_automatic::main::dirs.pp Module name: confdroid_automatic Author: 12ww1160 (12ww1160@confdroid.com)
- -
- - - -6 -7 -8 -9 -10- |
-
- # File 'manifests/main/dirs.pp', line 6
-
-class confdroid_automatic::main::dirs (
-
-) inherits confdroid_automatic::params {
- require confdroid_automatic::main::install
-}
- |
-
confdroid_automatic::main::files.pp Module name: confdroid_automatic Author: 12ww1160 (12ww1160@confdroid.com)
- -
- - - -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24- |
-
- # File 'manifests/main/files.pp', line 6
-
-class confdroid_automatic::main::files (
-
-) inherits confdroid_automatic::params {
- require confdroid_automatic::main::dirs
-
- file { $ac_main_config:
- ensure => file,
- path => $ac_main_config,
- owner => 'root',
- group => 'root',
- mode => '0644',
- selrange => s0,
- selrole => object_r,
- seltype => etc_t,
- seluser => system_u,
- content => template($ac_main_config_erb),
- notify => Service[$ac_service],
- }
-}
- |
-
confdroid_automatic::main::install.pp Module name: confdroid_automatic Author: 12ww1160 (12ww1160@confdroid.com)
- -
- - - -6 -7 -8 -9 -10 -11 -12- |
-
- # File 'manifests/main/install.pp', line 6
-
-class confdroid_automatic::main::install (
-
-) inherits confdroid_automatic::params {
- package { $ac_reqpackages:
- ensure => $ac_pkg_ensure,
- }
-}
- |
-
confdroid_automatic::main::service.pp Module name: confdroid_automatic Author: 12ww1160 (12ww1160@confdroid.com)
- -
- - - -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17- |
-
- # File 'manifests/main/service.pp', line 6
-
-class confdroid_automatic::main::service (
-
-) inherits confdroid_automatic::params {
- require confdroid_automatic::main::files
-
- service { $ac_service:
- ensure => running,
- hasstatus => true,
- hasrestart => true,
- enable => true,
- }
-}
- |
-
confdroid_automatic::params.pp Module name: confdroid_automatic Author: 12ww1160 (12ww1160@confdroid.com)
- -
- - - -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 -32 -33 -34 -35 -36 -37 -38 -39 -40 -41 -42 -43 -44 -45 -46 -47 -48 -49- |
-
- # File 'manifests/params.pp', line 17
-
-class confdroid_automatic::params (
-
- String $ac_reqpackages = 'dnf-automatic',
- String $ac_pkg_ensure = 'latest',
-
- # updates
- String $ac_upgrade_type = 'default',
- String $ac_random_sleep = '0',
- String $ac_network_online_timeout = '60',
- String $ac_download_updates = 'yes',
- String $ac_apply_updates = 'yes',
- String $ac_reboot = 'never',
- String $ac_emit_via = 'email',
- String $ac_email_to = 'root@example.net',
- String $ac_email_host = 'localhost',
-
-) {
-# Facts
- $fqdn = $facts['networking']['fqdn']
- $domain = $facts['networking']['domain']
- $os_name = $facts['os']['name']
- $os_release = $facts['os']['release']['major']
-
-# Service
- $ac_service = 'dnf-automatic.timer'
-
-# Files
- $ac_main_config = '/etc/dnf/automatic.conf'
- $ac_main_config_erb = 'confdroid_automatic/automatic.conf.erb'
-
-# includes must be last
- include confdroid_automatic::main::config
-}
- |
-