You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: roles/wildfly_install/tasks/prereqs.yml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,11 @@
2
2
- name: Validate credentials
3
3
ansible.builtin.assert:
4
4
that:
5
-
- (rhn_username is defined and eap_enable is defined and eap_enable) or not eap_enable is defined or not eap_enable or wildfly_offline_install or eap_install_use_prospero
6
-
- (rhn_password is defined and eap_enable is defined and eap_enable) or not eap_enable is defined or not eap_enable or wildfly_offline_install or eap_install_use_prospero
5
+
- (rhn_username is defined and eap_enable is defined and eap_enable) or not eap_enable is defined or not eap_enable
6
+
- (rhn_password is defined and eap_enable is defined and eap_enable) or not eap_enable is defined or not eap_enable
7
7
quiet: true
8
8
fail_msg: "Cannot install Red Hat Enterprise Application Platform without RHN credentials. Define rhn_username and rhn_password are defined or set eap_offline_install"
9
+
when: not wildfly_offline_install and not (wildfly_install_use_prospero | default(false))
0 commit comments