ansible manipulate file with a date format
Solution 1:
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)
vars:
date: "{{ lookup('pipe', 'date +%Y%m%d-%H%M') }}"
tasks:
- name: create file with a date in name
file: path="/path/somefile{{ date }}"
Or use the lookup itself in the templates:
- name: create file with a date in name
file: path="/path/somefile{{ lookup('pipe', 'date +%Y%m%d-%H%M') }}"
Solution 2:
Starting with 2.4, you can also use the strftime
filter (doc):
# Display year-month-day
{{ '%Y-%m-%d' | strftime }}
# Display hour:min:sec
{{ '%H:%M:%S' | strftime }}
# Use ansible_date_time.epoch fact
{{ '%Y-%m-%d %H:%M:%S' | strftime(ansible_date_time.epoch) }}
# Use arbitrary epoch value
{{ '%Y-%m-%d' | strftime(0) }} # => 1970-01-01