Enable all the things we need for the first ansible run post migration.
This commit is contained in:
parent
79ad32c70c
commit
8ebd0f931e
2 changed files with 26 additions and 27 deletions
|
@ -1,4 +1,4 @@
|
||||||
config = {
|
config = {
|
||||||
'fasclient.consumer.enabled': False,
|
'fasclient.consumer.enabled': True,
|
||||||
'fasclient.consumer.delay': 60, # in seconds
|
'fasclient.consumer.delay': 60, # in seconds
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,41 +136,40 @@
|
||||||
# This script checks all the virthosts and logs what guests they are running.
|
# This script checks all the virthosts and logs what guests they are running.
|
||||||
#
|
#
|
||||||
|
|
||||||
#- name: install vmdiff.sh cron
|
- name: install vmdiff.sh cron
|
||||||
# copy: src=vmdiff.sh dest=/etc/cron.hourly/vmdiff.sh mode=0755
|
copy: src=vmdiff.sh dest=/etc/cron.hourly/vmdiff.sh mode=0755
|
||||||
# tags:
|
tags:
|
||||||
# - batcave
|
- batcave
|
||||||
# - config
|
- config
|
||||||
|
|
||||||
#
|
#
|
||||||
# Setup public db copy script.
|
# Setup public db copy script.
|
||||||
#
|
#
|
||||||
|
|
||||||
#- name: setup public db copy script
|
- name: setup public db copy script
|
||||||
# copy: src=public-db-copy.cron dest=/etc/cron.daily/public-db-copy.cron mode=0644
|
copy: src=public-db-copy.cron dest=/etc/cron.daily/public-db-copy.cron mode=0644
|
||||||
# tags:
|
tags:
|
||||||
# - batcave
|
- batcave
|
||||||
# - config
|
- config
|
||||||
|
|
||||||
#
|
#
|
||||||
# Setup job that runs a check/diff ansible run over all playbooks each night.
|
# Setup job that runs a check/diff ansible run over all playbooks each night.
|
||||||
#
|
#
|
||||||
|
|
||||||
#- name: setup checkdiff ansible job
|
- name: setup checkdiff ansible job
|
||||||
# copy: src=ansible-playbook-check-diff.cron dest=/etc/cron.daily/ansible-playbook-check-diff.cron mode=0644
|
copy: src=ansible-playbook-check-diff.cron dest=/etc/cron.daily/ansible-playbook-check-diff.cron mode=0644
|
||||||
# tags:
|
tags:
|
||||||
# - batcave
|
- batcave
|
||||||
# - config
|
- config
|
||||||
|
|
||||||
#
|
#
|
||||||
# sync-rhn cron job
|
# sync-rhn cron job
|
||||||
#
|
#
|
||||||
#- name: setup sync-rhn cron
|
- name: setup sync-rhn cron
|
||||||
# copy: src=sync-rhn dest=/etc/cron.d/sync-rhn mode=0644
|
copy: src=sync-rhn dest=/etc/cron.d/sync-rhn mode=0644
|
||||||
# tags:
|
tags:
|
||||||
# - batcave
|
- batcave
|
||||||
# - config
|
- config
|
||||||
#
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Setup web server config
|
# Setup web server config
|
||||||
|
@ -206,11 +205,11 @@
|
||||||
- batcave
|
- batcave
|
||||||
- config
|
- config
|
||||||
|
|
||||||
#- name: create repo2json cron job
|
- name: create repo2json cron job
|
||||||
# copy: src=repo2json.cron dest=/etc/cron.d/repo2json.cron mode=0644
|
copy: src=repo2json.cron dest=/etc/cron.d/repo2json.cron mode=0644
|
||||||
# tags:
|
tags:
|
||||||
# - batcave
|
- batcave
|
||||||
# - config
|
- config
|
||||||
|
|
||||||
#
|
#
|
||||||
# ansible utils includes our rbac-playbook
|
# ansible utils includes our rbac-playbook
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue