diff options
author | Russell Teague <rteague@redhat.com> | 2017-11-22 09:43:20 -0500 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-11-22 09:43:20 -0500 |
commit | ccb57c1a3ae9b8adfba16ee3480e455e9561df57 (patch) | |
tree | 1af3156f3cfc934096e2182119b176a8bcd4f947 | |
parent | 4f83051b3b7c80e3ad71fc28108cd1fc3646b385 (diff) | |
download | openshift-ccb57c1a3ae9b8adfba16ee3480e455e9561df57.tar.gz openshift-ccb57c1a3ae9b8adfba16ee3480e455e9561df57.tar.bz2 openshift-ccb57c1a3ae9b8adfba16ee3480e455e9561df57.tar.xz openshift-ccb57c1a3ae9b8adfba16ee3480e455e9561df57.zip |
Include Deprecation - openshift-checks
-rw-r--r-- | playbooks/openshift-checks/adhoc.yml | 4 | ||||
-rw-r--r-- | playbooks/openshift-checks/health.yml | 4 | ||||
-rw-r--r-- | playbooks/openshift-checks/pre-install.yml | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/playbooks/openshift-checks/adhoc.yml b/playbooks/openshift-checks/adhoc.yml index 036a63776..414090733 100644 --- a/playbooks/openshift-checks/adhoc.yml +++ b/playbooks/openshift-checks/adhoc.yml @@ -20,6 +20,6 @@ action: openshift_health_check when: openshift_checks is undefined or not openshift_checks -- include: ../init/main.yml +- import_playbook: ../init/main.yml -- include: private/adhoc.yml +- import_playbook: private/adhoc.yml diff --git a/playbooks/openshift-checks/health.yml b/playbooks/openshift-checks/health.yml index 64bfa411d..caac06626 100644 --- a/playbooks/openshift-checks/health.yml +++ b/playbooks/openshift-checks/health.yml @@ -1,4 +1,4 @@ --- -- include: ../init/main.yml +- import_playbook: ../init/main.yml -- include: private/health.yml +- import_playbook: private/health.yml diff --git a/playbooks/openshift-checks/pre-install.yml b/playbooks/openshift-checks/pre-install.yml index 410204d6a..4511f6e3c 100644 --- a/playbooks/openshift-checks/pre-install.yml +++ b/playbooks/openshift-checks/pre-install.yml @@ -1,4 +1,4 @@ --- -- include: ../init/main.yml +- import_playbook: ../init/main.yml -- include: private/pre-install.yml +- import_playbook: private/pre-install.yml |