summaryrefslogtreecommitdiff
path: root/manifests/standalone.pp
blob: 3550d9991a1e868e93e7d61ed3952d3048dd97c8 (plain)
1
2
3
4
5
6
7
8
9
10
# manage a puppet standalone installation with no agent
class puppet::standalone {
  # Agent will not start on boot by default
  include puppet::base
  include puppet::daemon::disabled

  class { "puppet::repo":
    method => "standalone",
  }
}