Skip to content

Commit

Permalink
Fix debug time begin and end
Browse files Browse the repository at this point in the history
  • Loading branch information
martignoni committed Aug 11, 2020
1 parent 04008c4 commit 1ead61a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions buildmoodlebox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@

pre_tasks:
- debug:
msg: 'Beginning of build: {{ ansible_date_time.iso8601 }}'
delegate_to: localhost
become: false
msg: 'Beginning of build: {{ lookup("pipe", "date +%Y-%m-%dT%H:%M:%S%z") }}'

- name: include customised variables
include_vars: '{{ item }}'
Expand All @@ -21,9 +19,7 @@

post_tasks:
- debug:
msg: 'End of build: {{ ansible_date_time.iso8601 }}'
delegate_to: localhost
become: false
msg: 'End of build: {{ lookup("pipe", "date +%Y-%m-%dT%H:%M:%S%z") }}'

roles:
- rpi-settings
Expand Down

0 comments on commit 1ead61a

Please sign in to comment.