Puppet Class: lsys::auto_upgrade::polkit

Defined in:
manifests/auto_upgrade/polkit.pp

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include lsys::auto_upgrade::polkit

Parameters:

  • version (String) (defaults to: 'latest')
  • corporate_repo (Optional[ Variant[ String, Array[String] ] ]) (defaults to: undef)
  • corporate_repo_only (Boolean) (defaults to: false)


12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'manifests/auto_upgrade/polkit.pp', line 12

class lsys::auto_upgrade::polkit (
  String $version = 'latest',
  Optional[
    Variant[
      String,
      Array[String]
    ]
  ] $corporate_repo = undef,
  Boolean $corporate_repo_only = false,
) {
  bsys::tools::package { 'polkit':
    ensure              => $version,
    corporate_repo      => $corporate_repo,
    corporate_repo_only => $corporate_repo_only,
  }
}