Files
jakub 3baae5e557 add first working version
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-12-07 14:10:58 +01:00

20 lines
594 B
YAML

---
- name: '{{ launchd_timer_name }} Timer | Create script file'
copy:
dest: '{{ launchd_timer_script_path }}'
content: '{{ launchd_timer_script_content }}'
owner: '{{ launchd_timer_user }}'
group: '{{ launchd_timer_group }}'
mode: 0710
- name: '{{ launchd_timer_name }} Timer | Stat script file'
stat:
path: '{{ launchd_timer_script_path }}'
register: launchd_timer_script
- name: '{{ launchd_timer_name }} Timer | Verify script exists'
assert:
that: launchd_timer_script.stat.exists
fail_msg: 'Script file for timer does not exist!'
quiet: true