You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to provision Sensu on vagrant box built with veewee (CentOS 6.3 minimal).
With librarian-puppet I get the modules apt, redis, rabbitmq and sensu.
The relevant part in the Vagrantfile looks like
...
config.vm.host_name = "sensu-sandbox"
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.manifest_file = "main.pp"
end
...
And my main.pp looks like this:
node "sensu-sandbox" {
include sensu
sensu { "localhost":
rabbitmq_password => "sensupass",
server => true
}
}
The provisioning run ends with the following error message:
"Error: Must pass rabbitmq_password to Class[Sensu] at /tmp/vagrant-puppet/manifests/main.pp:3 on node sensu-sandbox"
I just don't get it ... While googling I found some pages suggesting to put the include statement at the end, but then I will end up with the following error message:
"Error: Puppet::Parser::AST::Resource failed with error ArgumentError: Invalid resource type sensu at /tmp/vagrant-puppet/manifests/main.pp:6 on node sensu-sandbox"
I get the same error when leaving out the include statement like in the README.
Any ideas what the problem could be?
The text was updated successfully, but these errors were encountered:
I am trying to provision Sensu on vagrant box built with veewee (CentOS 6.3 minimal).
With librarian-puppet I get the modules apt, redis, rabbitmq and sensu.
The relevant part in the Vagrantfile looks like
And my main.pp looks like this:
The provisioning run ends with the following error message:
"Error: Must pass rabbitmq_password to Class[Sensu] at /tmp/vagrant-puppet/manifests/main.pp:3 on node sensu-sandbox"
I just don't get it ... While googling I found some pages suggesting to put the include statement at the end, but then I will end up with the following error message:
"Error: Puppet::Parser::AST::Resource failed with error ArgumentError: Invalid resource type sensu at /tmp/vagrant-puppet/manifests/main.pp:6 on node sensu-sandbox"
I get the same error when leaving out the include statement like in the README.
Any ideas what the problem could be?
The text was updated successfully, but these errors were encountered: