36 lines
899 B
Bash
36 lines
899 B
Bash
|
#!/bin/bash
|
|||
|
PORT=$1
|
|||
|
PORT2=$2
|
|||
|
|
|||
|
#### echo akaxin logo and desc
|
|||
|
echo "
|
|||
|
|
|||
|
/ \
|
|||
|
/ . \
|
|||
|
\ . \
|
|||
|
/ \ \ / _ _ __ _ __ __ ___ _ _
|
|||
|
/ . \ | / / \ / \ | |/ / / \ \ \/ / |_ _| | \ | |
|
|||
|
/ . _ \ / / . \ / _ \ | ' / / _ \ \ / | | | \| |
|
|||
|
\ / / \ - . / / ___ \ | . \ / ___ \ / \ | | | |\ |
|
|||
|
\ / / | \ / /_/ \_\ |_|\_\ /_/ \_\ /_/\_\ |___| |_| \_|
|
|||
|
/ . \ \ /
|
|||
|
\ . \
|
|||
|
\ /
|
|||
|
\ /
|
|||
|
|
|||
|
Akaxin is an open source and free proprietary IM software,you can build private openzaly-server for everyone in any server.
|
|||
|
|
|||
|
"
|
|||
|
|
|||
|
##set tcp port
|
|||
|
if [ -n $PORT ]; then
|
|||
|
PORT=2021
|
|||
|
fi
|
|||
|
|
|||
|
##set http port
|
|||
|
if [ -n $PORT2 ]; then
|
|||
|
PORT2=8280
|
|||
|
fi
|
|||
|
|
|||
|
sh stop.sh $PORT 1
|
|||
|
sh start.sh $PORT $PORT2 1
|