mirror of
https://github.com/monlor/MIXBOX-ARCHIVE.git
synced 2026-03-11 07:51:54 +00:00
21 lines
577 B
Plaintext
21 lines
577 B
Plaintext
#------------------【VerySync】--------------------
|
|
verysync() {
|
|
|
|
eval `mbdb export verysync`
|
|
source /etc/mixbox/bin/base
|
|
echo "********* $service ***********"
|
|
echo "[${appinfo}]"
|
|
readsh "启动${appname}服务[1/0] " "enable" "1"
|
|
if [ "$enable" == '1' ]; then
|
|
|
|
readsh "请输入${appname}端口号" "port" "8886"
|
|
|
|
readsh "请输入${appname}外网访问配置[1/0]" "openport" "1"
|
|
|
|
${mbroot}/apps/${appname}/scripts/${appname}.sh restart
|
|
else
|
|
${mbroot}/apps/${appname}/scripts/${appname}.sh stop
|
|
fi
|
|
|
|
}
|
|
#------------------【VerySync】-------------------- |