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'm new to puppet. When I install the ganglia module I keep getting the following error
tax error at 'ganglia_ip'; expected '}' at /etc/puppet/manifests/site.pp:96 on node puppet.com
Here's a copy of my site.pp.
$clusters = [
{
name => 'puppet',
address => ['node001.com'],
},
]
class{ 'ganglia::gmetad':
clusters => $clusters,
gridname => 'my grid',
}
class ganglia::web {
class{ 'ganglia::web':
class{ 'ganglia::web':
$ganglia_ip = '127.0.0.1',
$ganglia_port = 8652,
The text was updated successfully, but these errors were encountered:
@mh54 It appears that you have $ signs and =s in your parameter declarations for ganglia::web, which is invalid puppet syntax. It should be something like
I'm new to puppet. When I install the ganglia module I keep getting the following error
tax error at 'ganglia_ip'; expected '}' at /etc/puppet/manifests/site.pp:96 on node puppet.com
Here's a copy of my site.pp.
$clusters = [
{
name => 'puppet',
address => ['node001.com'],
},
]
class{ 'ganglia::gmetad':
clusters => $clusters,
gridname => 'my grid',
}
class ganglia::web {
class{ 'ganglia::web':
class{ 'ganglia::web':
$ganglia_ip = '127.0.0.1',
$ganglia_port = 8652,
The text was updated successfully, but these errors were encountered: