- name: register version into release
local_action: command echo $version
register: release
when_set: $version
I would prefer the second task to be something like this (rather than having
to store the result of echoing the property!)
- name: store release.stdout into version
local_action: variable name=version value=${release.stdout}
I'm not really against some kind of action plugin called 'setvar' that
allows you to pass in python statements, but this seems like a
question about
whether hostvars has higher priority than extravars, and we've
explicitly added extra vars at maximum priority so they can override
defaults.
What it seems to me is that instead of doing it the way you are doing
it, you could set the default in group_vars/all, and then let the
computed variable
override it there.
While, no, it is not "-e", it is somewhat equivalent.
name: register version into release
local_action: command echo $version
register: release
when_set: $version
I would prefer the second task to be something like this (rather than having
to store the result of echoing the property!)
name: store release.stdout into version
local_action: variable name=version value=${release.stdout}
I’m not really against some kind of action plugin called ‘setvar’ that
allows you to pass in python statements, but this seems like a
question about
whether hostvars has higher priority than extravars, and we’ve
explicitly added extra vars at maximum priority so they can override
defaults.
I think my question is more about how I can make the results of a registered variable be equivalent to other variables.
I’m happy with the precedence order, I just want to be able to derive a variable, with the same name, if it is not set.
What it seems to me is that instead of doing it the way you are doing
it, you could set the default in group_vars/all, and then let the
computed variable
override it there.
My problem is that the variables are being passed in by external deployment tool (deploy release x.y.z or just deploy latest) and so are passed in as extra vars.
Old thread, but it popped up in my goog when I was looking for answers. Since I worked out two different solutions, I wanted to share them.
I needed to get a user account home directory and share it with a role. Just using register meant I would have to use “variable.stdout” everywhere. Instead I used the pre_tasks section of the playbook to retrieve the value and then pulled the key/value out on the role’s variable declaration. Here’s the code I used. I hope this helps out others.
pre_tasks:
name: Get ansible_user home directory
shell: ‘getent passwd “{{ansible_ssh_user}}” | cut -d: -f6’
register: ansible_home_result
roles:
Another approach that is far more elaborate but can solve anything is to create a python application that uses jinja2, and then process all your .yml files as if they were jinja2 templates. The python application can solve any kind of variable instantiation challenge while leaving the .yml reusable for other scenarios. Because jinja2 will only process the template variables it is told to, it will leave other {{variables}} for ansible to define. I use this approach to query an elaborate AWS cluster, and then preprocess the ansible scripts.
If you do “ansible hostname -m setup” in recent versions, you should see that environment variables are provided, in which case you can pull $HOME from there.
This of course would only work for the active user.
Okay, my example kind of sucks and I’m not surprised that you noticed. I had to implement this approach after finding that ansible_env.HOME did what it should, but not what I needed.
The playbooks run with “sudo: yes” because it was maddening to declare sudo state for each task. That makes ansible_env.HOME evaluate to “/root”. This is how I solved that problem, but it became difficult to reuse code that had {{ansible_home_result.stdout}} everywhere.
The pattern is generally applicable for converting any dictionary pair into a single value variable.
I’m not sure how durable this solution will be since it depends on the pre_task executing and updating the global dictionary before the role is evaluated. I feel like its depending on an implied behavior instead of a contract. A “setvar” solution like you proposed would be superior because the behavior is explicit.
I did not know about set_facts. I am not surprised that I got the search term wrong. If we are lucky, this thread will bridge the two lexical choices in the goog.
I modified my snippet to look like this.
pre_tasks:
name: Get ansible_user home directory
shell: ‘getent passwd “{{ansible_ssh_user}}” | cut -d: -f6’
register: ansible_home_result
name: Set the fact for the other scripts to use
set_fact: ansible_home=‘{{ansible_home_result.stdout}}’
I also submitted a pull for a doc change in the variable documentation since it was the first place i went looking for answers.