I use a stroller with a puppet. The provisioning setup in my firewall is as follows:
config.vm.provision "puppet" do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.hiera_config_path = "puppet/hiera.yaml"
puppet.module_path = "../puppet/modules"
puppet.manifest_file = "site.pp"
end
I have another virtual machine that is not controlled by a tramp and wants to apply a puppet configuration to it. I want to use the exact puppet command used by the tramp.
Can someone tell me which puppet command is used by the tramp?
source
share