9 lines
224 B
YAML
9 lines
224 B
YAML
---
|
|
- name: wait 4s to free tomcat connections
|
|
shell: sleep 4
|
|
- name: stop tomcat
|
|
service: name=tomcat state=stopped
|
|
- name: clean catalina.out
|
|
shell: cd {{root_dir}}/logs/ && rm -f catalina.out && touch catalina.out
|
|
|