Skip to content

Instantly share code, notes, and snippets.

@mech422
Last active March 15, 2017 19:02
Show Gist options
  • Save mech422/40acb02a866b5159adba949546e52756 to your computer and use it in GitHub Desktop.
Save mech422/40acb02a866b5159adba949546e52756 to your computer and use it in GitHub Desktop.
---
#
- { include: packages/keystone.yml, when: playbook_action != 'uninstall' }
- { include: packages/glance.yml, when: playbook_action != 'uninstall' }
- { include: packages/nova.yml, when: playbook_action != 'uninstall' }
- { include: packages/neutron.yml, when: playbook_action != 'uninstall' }
- { include: packages/cinder.yml, when: playbook_action != 'uninstall' }
- { include: packages/cinderv2.yml, when: playbook_action != 'uninstall' }
- { include: packages/heat.yml, when: playbook_action != 'uninstall' }
- { include: packages/heat-cfn.yml, when: playbook_action != 'uninstall' }
- { include: packages/horizon.yml, when: playbook_action != 'uninstall' }
# We uninstall stuff in the reverse order
- { include: packages/horizon.yml, when: playbook_action == 'uninstall' }
- { include: packages/heat-cfn.yml, when: playbook_action == 'uninstall' }
- { include: packages/heat.yml, when: playbook_action == 'uninstall' }
- { include: packages/cinderv2.yml, when: playbook_action == 'uninstall' }
- { include: packages/cinder.yml, when: playbook_action == 'uninstall' }
- { include: packages/neutron.yml, when: playbook_action == 'uninstall' }
- { include: packages/nova.yml, when: playbook_action == 'uninstall' }
- { include: packages/glance.yml, when: playbook_action == 'uninstall' }
- { include: packages/keystone.yml, when: playbook_action == 'uninstall' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment