Puppet Class: stns::client::config

Defined in:
manifests/client/config.pp

Overview

Parameters:

  • api_end_point (Any) (defaults to: $stns::client::api_end_point)
  • user (Any) (defaults to: $stns::client::user)
  • password (Any) (defaults to: $stns::client::password)
  • wrapper_path (Any) (defaults to: $stns::client::wrapper_path)
  • chain_ssh_wrapper (Any) (defaults to: $stns::client::chain_ssh_wrapper)
  • ssl_verify (Any) (defaults to: $stns::client::ssl_verify)
  • request_timeout (Any) (defaults to: $stns::client::request_timeout)
  • http_proxy (Any) (defaults to: $stns::client::http_proxy)
  • request_header (Any) (defaults to: $stns::client::request_header)
  • uid_shift (Any) (defaults to: $stns::client::uid_shift)
  • gid_shift (Any) (defaults to: $stns::client::gid_shift)


6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'manifests/client/config.pp', line 6

class stns::client::config (
  $api_end_point     = $stns::client::api_end_point,
  $user              = $stns::client::user,
  $password          = $stns::client::password,
  $wrapper_path      = $stns::client::wrapper_path,
  $chain_ssh_wrapper = $stns::client::chain_ssh_wrapper,
  $ssl_verify        = $stns::client::ssl_verify,
  $request_timeout   = $stns::client::request_timeout,
  $http_proxy        = $stns::client::http_proxy,
  $request_header    = $stns::client::request_header,
  $uid_shift         = $stns::client::uid_shift,
  $gid_shift         = $stns::client::gid_shift,
){

  file { '/etc/stns/libnss_stns.conf':
    ensure  => present,
    owner   => 'root',
    group   => 'root',
    mode    => '0644',
    content => template('stns/libnss_stns.conf.erb'),
  }

}