Puppet Class: puppet_ent_agent::config::symlinks

Defined in:
manifests/config/symlinks.pp

Overview

manages symlinks to PE agent binaries



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'manifests/config/symlinks.pp', line 2

class puppet_ent_agent::config::symlinks {
  $bin_path                = $::puppet_ent_agent::bin_path

  assert_private()

  File {
    ensure => link,
  }

  file { '/usr/bin/facter':
    target => "${bin_path}/facter",
  }

  file { '/usr/bin/hiera':
    target => "${bin_path}/hiera",
  }

  file { '/usr/bin/puppet':
    target => "${bin_path}/puppet",
  }

  file { '/usr/bin/pe-man':
    target => "${bin_path}/pe-man",
  }
}