8 lines
144 B
Bash
Executable File
8 lines
144 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
rm -f /var/lib/$TOMCAT_SERVICE/webapps/demo.war
|
|
rm -rf /var/lib/$TOMCAT_SERVICE/webapps/demo
|
|
fi
|
|
|