mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-24 09:32:17 -05:00
14 lines
241 B
Plaintext
Executable File
14 lines
241 B
Plaintext
Executable File
if [ -z "$1" ]; then echo "Must supply name"; exit 0; fi
|
|
|
|
set -x
|
|
|
|
M_HOST=$1
|
|
|
|
./create-server-accounts $M_HOST
|
|
./setup-james $M_HOST
|
|
./setup-java $M_HOST
|
|
./setup-mysql $M_HOST
|
|
./setup-tomcat $M_HOST
|
|
./setup-web $M_HOST
|
|
./enable-rsync $M_HOST
|