7 lines
143 B
Bash
7 lines
143 B
Bash
|
#!/bin/bash
|
||
|
# Copy the extra libraries to the Tomcat lib directory
|
||
|
cp /mnt/extra-libs/* /usr/local/tomcat/lib/
|
||
|
|
||
|
# Start Tomcat
|
||
|
catalina.sh run
|