
Remove the script and the cronjob on bridge that runs it. Change-Id: I45e4d9713f3ba4760ba384d13487c6214d068800
16 lines
333 B
YAML
16 lines
333 B
YAML
- name: Ensure directory exists for lock files
|
|
file:
|
|
state: directory
|
|
path: /var/run/ansible
|
|
|
|
- name: Set PATH for cron
|
|
cron:
|
|
name: PATH
|
|
env: yes
|
|
value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
|
|
- name: Set up cron job for running run_all.sh
|
|
cron:
|
|
name: run_all.sh
|
|
state: absent
|