[chef] Re: Knife search shows attributes but cannot find same attribute in recipe


Chronological Thread 
  • From: AJ Christensen < >
  • To: " " < >
  • Subject: [chef] Re: Knife search shows attributes but cannot find same attribute in recipe
  • Date: Fri, 6 Feb 2015 17:45:11 +1300

```
tcuser=node.attribute[:tomcat][:user]
log "tc user is #{tcuser}"
```

this is wrong, you want something like:

```
tcuser = node['tomcat']['user']
```

in your Recipe. I don't know that `node.attribute` does what you mean.

cheers,

--aj

On Fri, Feb 6, 2015 at 5:42 PM, M G < " target="_blank"> > wrote:
Hi

When i do 

knife search node name:devwsgw20150130113529 -a tomcat.user
1 items found

devwsgw20150130113529:
  tomcat.user: tomcat

I see there is an attribute called tomcat.user

In recipe I am using,

tcuser=node.attribute[:tomcat][:user]
log "tc user is #{tcuser}"


When I run the chef-client on the above node, i see the following line printed

Compiling Cookbooks...
Converging 14 resources
Recipe: update::deploy
  * log[tc user is ] action write

Why can knife search the attribute and the recipe cannot?

Please provide pointers/suggestions.

Regards

mg







Archive powered by MHonArc 2.6.16.

§