-
Notifications
You must be signed in to change notification settings - Fork 0
/
play_absent.yml
41 lines (35 loc) · 1.13 KB
/
play_absent.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
- hosts: localhost
tasks:
- name: Deploy artifact
jcli_deploy:
jboss_home: /Users/it-ops/Documents/java_dev/server/wildfly-10.0.0.Final/
server_group_name: group1
server_mode: domain
artifact: demo-0.0.1-SNAPSHOT.war
artifact_dir: /Users/it-ops/Documents/java_dev/workspaces/workspace-sandbox/vagrant-ci/sample-code/target/
state: absent
user: wildfly
password: password
register: hasil
- debug: var=hasil
- name: Server
jcli_server:
jboss_home: /Users/it-ops/Documents/java_dev/server/wildfly-10.0.0.Final/
host: master
server_group_name: group1
server_config_name: server1
server_socket_binding_port_offset: 20
user: wildfly
password: password
state: absent
register: hasil
- debug: var=hasil
- name: Server group
jcli_servergroup:
jboss_home: /Users/it-ops/Documents/java_dev/server/wildfly-10.0.0.Final/
server_group_name: group1
user: wildfly
password: password
state: absent
register: hasil
- debug: var=hasil