mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
12 years ago
|
-
|
||
|
hosts: all
|
||
|
gather_facts: no
|
||
|
user: root
|
||
|
vars:
|
||
|
color: brown
|
||
|
tasks:
|
||
|
- name: test 1
|
||
|
cron: name="execution test 1" weekday="2,3" minute=0 hour=12 user="root" job="YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate" cron_file=yum-autoupdate state=absent
|
||
|
tags:
|
||
|
- cron
|
||
|
|
||
|
- name: test 1-1
|
||
|
cron: name="execution test 1" weekday="2,3" minute=0 hour=12 user="root" job="YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate" cron_file=yum-autoupdate state=absent
|
||
|
tags:
|
||
|
- cron
|
||
|
|
||
|
- name: test 2-1
|
||
|
cron: name="execution test 2" weekday="2,3" minute=0 hour=12 user="root" job="YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate" state=absent
|
||
|
tags:
|
||
|
- cron
|
||
|
|
||
|
- name: test 2-2
|
||
|
cron: name="execution test 2" weekday="2,3" minute=0 hour=12 user="root" job="YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate" state=absent
|
||
|
tags:
|
||
|
- cron
|
||
|
|
||
|
- name: test 2-3
|
||
|
cron: name="execution test 2" weekday="2,3" minute=0 hour=12 user="root" job="YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate"
|
||
|
tags:
|
||
|
- cron
|
||
|
|
||
|
- name: test 3-1
|
||
|
cron: name="execution test 3" weekday="2,3" minute=0 hour=12 user="root" job="YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate" cron_file=yum-autoupdate state=absent
|
||
|
tags:
|
||
|
- cron
|
||
|
|
||
|
- name: test 3-2
|
||
|
cron: name="execution test 3" weekday="2,3" minute=0 hour=12 user="root" job="YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate" cron_file=yum-autoupdate
|
||
|
tags:
|
||
|
- cron
|
||
|
|