Carlos, $lastexitcode does not give you the exit status of the last powershell cmdlet, it gives you the last exit status of a Windows process that you executed. Since get-website is a cmdlet, lastexitcode tells you nothing about its success or failure. For cmdlet status, use $?, which is $true if the last cmdlet succeeded, $false otherwise.  Powershell_script actually has a feature to make your scenario easy â just provide a boolean _expression_ to your guard, something like (get-website | where-object { $_.name -eq 'My_Web_App' }).length > 0, which will return $true if thereâs a web site satisfying the query (assuming get-website returns a collection with a length property) and $false otherwise.  You can read more about this capability in this documentation from http://docs.getchef.com/resource_powershell_script.html -- see the excerpt below:   convert_boolean_return            Use to return 0 if the last line of a command is evaluated to be true or to return 1 if the last line is evaluated to be false. Default value: false.  When the guard_intrepreter common attribute is set to :powershell_script, a string command will be evaluated as if this value were set to true. This is because the behavior of this attribute is similar to the value of the "$?" _expression_ common in UNIX interpreters. For example, this:  powershell_script 'make_safe_backup' do  guard_interpreter :powershell_script  code 'cp ~/data/nodes.json ~/data/nodes.bak'  not_if 'test-path ~/data/nodes.bak' end is similar to:  bash 'make_safe_backup' do  code 'cp ~/data/nodes.json ~/data/nodes.bak'  not_if 'test -e ~/data/nodes.bak' end  Hi Carlos,  You also posted this question on StackOverflow: http://stackoverflow.com/questions/25406353/chef-not-if-and-only-if-validation-issue-in-windows-recipes.  I understand that you are trying to get the fastest answer possible, but posting the same question in multiple channels, you may discourage the chances of getting an answer. It gives a wry impression. Here's what I would recommend:  - If you have a question and you need an answer NOW, IRC is the best bet. You will get real-time communication with members of Chef and the Chef community. - If you have a question that is about process, best practice, or opinion, this mailing list is probably your best bet. If you need to show code on the mailing list, using a service like PasteBin or GitHub Gist can make the email more readable. - If you have a specific code example (i.e. why is this failing), StackOverflow/ServerFault are usually the best.  I realize there are definitely areas for overlap, so please use your best judgement.  Thanks, Seth Â
 |
Archive powered by MHonArc 2.6.16.