summaryrefslogtreecommitdiffstats
path: root/playbooks/byo/rhel_subscribe.yml
diff options
context:
space:
mode:
authorPep TurrĂ³ Mauri <pep@redhat.com>2015-08-03 16:40:06 +0200
committerPep TurrĂ³ Mauri <pep@redhat.com>2015-08-03 17:48:15 +0200
commite438f0c19e86241e11853970aa7e94e90c5fffeb (patch)
treeb5562060802f39c352428f9a283d7bc3a28a493d /playbooks/byo/rhel_subscribe.yml
parent3548472edd08d09fafcb236790a44bcf31aa5f03 (diff)
downloadopenshift-e438f0c19e86241e11853970aa7e94e90c5fffeb.tar.gz
openshift-e438f0c19e86241e11853970aa7e94e90c5fffeb.tar.bz2
openshift-e438f0c19e86241e11853970aa7e94e90c5fffeb.tar.xz
openshift-e438f0c19e86241e11853970aa7e94e90c5fffeb.zip
Use deployment_type, not openshift_deployment_type
This seems to be what's used in other places
Diffstat (limited to 'playbooks/byo/rhel_subscribe.yml')
-rw-r--r--playbooks/byo/rhel_subscribe.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/byo/rhel_subscribe.yml b/playbooks/byo/rhel_subscribe.yml
index 60300c3dc..f564905ea 100644
--- a/playbooks/byo/rhel_subscribe.yml
+++ b/playbooks/byo/rhel_subscribe.yml
@@ -1,10 +1,10 @@
---
- hosts: all
vars:
- deployment_type: "{{ openshift_deployment_type }}"
+ openshift_deployment_type: "{{ deployment_type }}"
roles:
- role: rhel_subscribe
- when: openshift_deployment_type == "enterprise" and
+ when: deployment_type == "enterprise" and
ansible_distribution == "RedHat" and
lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
default('no', True) | lower in ['no', 'false']