Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 641 Bytes

File metadata and controls

41 lines (32 loc) · 641 Bytes

LinuxAid Agent

Setup

# Redhat
sudo yum install puppet-agent

# Debian
sudo apt-get install puppet-agent
  • Setup puppet.conf
cat /etc/puppetlabs/puppet/puppet.conf
[main]
  server = <puppetserver.url>
  certname = <certname>
  masterport = 8140
  environment = production
  runinterval = 30m
  strict_variables = true
  manage_internal_file_permissions = false
  runtimeout = 20m

[agent]
report = true
noop = false
graph = true
splaylimit = 60s
splay = true
  • Run puppet agent
puppet agent -t --noop