En ansible, me gustaría manipular archivos/directorios/archivos que están compuestos o compuestos de esta manera:
Como podría hacerlo. Parece que Ansible no es capaz de manejar eso. (Yo dudo). Entonces, ¿qué hago mal?
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....
Respuesta1
Establezca una variable y luego úsela con AnsibleSistema de plantillas Jinja2(parece que estás intentando hacer PHP con el operador de punto y las comillas invertidas)
vars:
date: "{{ lookup('pipe', 'date +%Y%m%d-%H%M') }}"
tasks:
- name: create file with a date in name
file: path="/path/somefile{{ date }}"
O utilice la búsqueda en las plantillas:
- name: create file with a date in name
file: path="/path/somefile{{ lookup('pipe', 'date +%Y%m%d-%H%M') }}"
Respuesta2
A partir de 2.4, también puedes usar el strftime
filtro (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
Respuesta3
Tu podrías intentar..
vars:
- a_timestamp: "{{ timestamp.stdout }}"
tasks:
- name: Get a timestamp
command: date +%Y%m%d%H%M%S
register: timestamp
luego agregue la variable donde sea necesario.