Created
June 5, 2014 10:36
-
-
Save halberom/b452df40828839fecabf to your computer and use it in GitHub Desktop.
ansible - using lookup to get a date timestamp into a variable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
TASK: [debug var=mydate] ****************************************************** | |
ok: [localhost] => { | |
"mydate": "20140605101824" | |
} | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: all | |
tasks: | |
- set_fact: mydate="{{lookup('pipe','date +%Y%m%d%H%M%S')}}" | |
- debug: var=mydate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ssbarnea: true, but that can be amended by adding another step: set_fact: the_timestamp = " {{ current_run_timestamp.stdout }}"