Puppet Class: foreman::plugin::column_view

Defined in:
manifests/plugin/column_view.pp

Summary

Install the column view plugin and optionally manage the configuration file

Overview

Parameters:

  • columns (Hash[String, Hash]) (defaults to: {})

    an hash of columns to add to the configuration



6
7
8
9
10
11
12
13
14
15
# File 'manifests/plugin/column_view.pp', line 6

class foreman::plugin::column_view (
  Hash[String, Hash] $columns = {},
) {
  # https://projects.theforeman.org/issues/21398
  assert_type(Hash[String, Foreman::Column_view_column], $columns)

  foreman::plugin { 'column_view':
    config => template('foreman/foreman_column_view.yaml.erb'),
  }
}