blob: e0b905a57ce6ea4ddcbc501d05420ef086c99130 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- name: Deploy simple app to clever
hosts: localhost
remote_user: root
roles:
- role: clever
vars:
clever_token: 123abc
clever_secret: cba321
clever_app: app_00000000-0000-0000-0000-000000000000
post_tasks:
- name: Check CC_RUN_COMMAND is not part of the environment
fail:
msg: "CC_RUN_COMMAND env variable should not be present in the environment dict"
when: clever_env.CC_RUN_COMMAND is defined
|