Update comments

Signed-off-by: Teddysun <i@teddysun.com>
This commit is contained in:
Teddysun 2018-04-15 19:03:09 +09:00
parent 9a79c4aefb
commit c2363b9d92
No known key found for this signature in database
GPG Key ID: 09BD4C080AD6C46D

10
kms.sh
View File

@ -1,12 +1,11 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# #
# Auto install KMS Server # Auto install KMS Server
#
# System Required: CentOS 6+, Debian7+, Ubuntu12+ # System Required: CentOS 6+, Debian7+, Ubuntu12+
#
# Copyright (C) 2017-2018 Teddysun <i@teddysun.com> # Copyright (C) 2017-2018 Teddysun <i@teddysun.com>
# URL: https://teddysun.com/530.html
# #
# URL: https://teddysun.com/489.html # Thanks: https://github.com/Wind4/vlmcsd
# #
red='\033[0;31m' red='\033[0;31m'
@ -54,7 +53,6 @@ boot_stop(){
fi fi
} }
# Get version # Get version
getversion(){ getversion(){
if [[ -s /etc/redhat-release ]]; then if [[ -s /etc/redhat-release ]]; then
@ -135,7 +133,7 @@ install_main() {
echo "----------------------------------------" echo "----------------------------------------"
echo " Auto install KMS Server" echo " Auto install KMS Server"
echo echo
echo " URL: https://teddysun.com/489.html" echo " URL: https://teddysun.com/530.html"
echo "----------------------------------------" echo "----------------------------------------"
echo echo
echo "Press any key to start...or Press Ctrl+C to cancel" echo "Press any key to start...or Press Ctrl+C to cancel"
@ -181,7 +179,7 @@ install_main() {
rm -rf vlmcsd rm -rf vlmcsd
echo echo
echo "Install KMS Server success" echo "Install KMS Server success"
echo "Welcome to visit:https://teddysun.com/489.html" echo "Welcome to visit:https://teddysun.com/530.html"
echo "Enjoy it!" echo "Enjoy it!"
echo echo
} }