50 lines
981 B
YAML
50 lines
981 B
YAML
---
|
|
#Installationsscript
|
|
|
|
|
|
##########################################################
|
|
######### Entwicklungsumgebung ##############
|
|
##########################################################
|
|
- name: Installation für Entwicklungsumgebung
|
|
hosts: dbservers
|
|
become_user: root
|
|
become: yes
|
|
|
|
environment:
|
|
CV_ASSUME_DISTID: OEL7.8
|
|
|
|
roles:
|
|
- filesystem
|
|
- ora_inst_ahf
|
|
- db1913
|
|
- tvd
|
|
- restconfig
|
|
|
|
#handlers:
|
|
#- name: stopALL
|
|
#command: ./stopALL
|
|
#args:
|
|
#chdir: "/home/jetty"
|
|
#async: 1
|
|
#poll: 0
|
|
|
|
#- name: Wait for status File Appserver is absent
|
|
#local_action:
|
|
#module: wait_for
|
|
#path: /opt/rola/ams/linux/Appserver/service/rsWebserviceAppserver.status
|
|
#state: absent
|
|
#async: 120
|
|
#poll: 5
|
|
|
|
#- name: startALL
|
|
#command: ./startALL
|
|
#args:
|
|
#chdir: "/home/jetty"
|
|
#async: 120
|
|
#poll: 5
|
|
|
|
|
|
|
|
|
|
|