In ansible, I would like to manipulate files/directories/archive that are composed or to composed like this:
How would I do that. It seem Ansible is not able to handler that. (I doubt). So, what I do wrong ?
Ex:
- name: create file with a date in name
file: path=/path/somefile.`date +%y_%m_%d`
- name: unzip a file
unarchive: path=/path/zomezip.`date +%y_%m_%d`.tar.gz bla bla....
Set a variable, then use it with Ansible's Jinja2 templating system (it looks like you're trying to do PHP with the dot operator and the backticks)
Or use the lookup itself in the templates:
Starting with 2.4, you can also use the
strftime
filter (doc):You could try..
then add the variable where needed.