more isolated task execution tweaking

* set a more reasonable default `AWX_ISOLATED_CHECK_INTERVAL`
* make manual cancellation work for high values of
  `AWX_ISOLATED_CHECK_INTERVAL`
* remove the `/tmp/ansible_tower/jobs/` symlink directory

see: #6616
This commit is contained in:
Ryan Petrello
2017-06-16 11:18:01 -04:00
parent 44e0c8621a
commit 1ea03aa4c9
9 changed files with 36 additions and 37 deletions

View File

@@ -2,7 +2,6 @@
# The following variables will be set by the runner of this playbook:
# src: /tmp/some/path/private_data_dir/
# job_id: <pk>
- hosts: all
gather_facts: false
@@ -16,6 +15,6 @@
mode: pull
recursive: yes
- shell: "tower-expect is-alive {{job_id}}"
- shell: "tower-expect is-alive {{src}}"
register: is_alive
failed_when: "is_alive.rc == 0"