Fail role/pve-subscribe on incompatible target

Allow role/pve-subscribe to fail on incompatible target without failing
the entire playbook run. This allows the playbook to easely setup the
environment against non-proxmox targets.
This commit is contained in:
Jan 2020-05-10 19:47:42 +02:00
parent 3dc3d1d8ca
commit 8c9ce3ded4
1 changed files with 15 additions and 9 deletions

View File

@ -1,13 +1,19 @@
---
- name: Assert incompatible target
fail: msg="Target doesn't look like a Proxmox instance. Proceeding would cause damage to the target."
when: ansible_facts.cmdline.BOOT_IMAGE.find('-pve') == -1
- block:
- name: Protect non-pve systems
fail:
msg: 'Target system is not instance of Proxmox'
when: ansible_facts.cmdline.BOOT_IMAGE.find('-pve') == -1 or
ansible_virtualization_role != "host" # Catches lxc guests on pve kernel
- name: Configuring pve for unsubscribed operation
import_tasks: no-subscription.yml
when: pve_subscription_key | length == 0
- name: Configuring pve for unsubscribed operation
import_tasks: no-subscription.yml
when: not pve_subscription_key
- name: Configuring pve for licensed operation
import_tasks: enterprise.yml
when: pve_subscription_key | length != 0
- name: Configuring pve for licensed operation
import_tasks: enterprise.yml
when: pve_subscription_key
rescue:
- meta: noop