Browse Source

corrected [y/N]

pull/820/merge
Daniel Gibbs 9 years ago
parent
commit
96c86e8b6d
  1. 4
      lgsm/functions/command_backup.sh
  2. 2
      lgsm/functions/command_console.sh
  3. 2
      lgsm/functions/command_ts3_server_pass.sh
  4. 2
      lgsm/functions/install_server_dir.sh

4
lgsm/functions/command_backup.sh

@ -16,7 +16,7 @@ fn_print_info_nl "A total of $(du -sh "${rootdir}" --exclude="${backupdir}" | aw
echo "${backupdir}/${backupname}.tar.gz"
echo ""
while true; do
read -p "Continue? [y/N]" yn
read -p "Continue? [Y/N]" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) echo Exiting; return;;
@ -30,7 +30,7 @@ if [ "${status}" != "0" ]; then
fn_print_warning_nl "${servicename} is currently running."
sleep 1
while true; do
read -p "Stop ${servicename} while running the backup? [y/N]" yn
read -p "Stop ${servicename} while running the backup? [Y/N]" yn
case $yn in
[Yy]* ) command_stop.sh; break;;
[Nn]* ) break;;

2
lgsm/functions/command_console.sh

@ -18,7 +18,7 @@ echo "Press \"CTRL+b d\" to exit console."
fn_print_warning_nl "Do NOT press CTRL+c to exit."
echo ""
while true; do
read -e -i "y" -p "Continue? [y/N]" yn
read -e -i "y" -p "Continue? [Y/n]" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) echo Exiting; return;;

2
lgsm/functions/command_ts3_server_pass.sh

@ -21,7 +21,7 @@ fn_print_infomation_nl "You are about to change the ${gamename} ServerAdmin pass
fn_print_warning_nl "${gamename} will restart during this process."
echo ""
while true; do
read -e -i "y" -p "Continue? [y/N]" yn
read -e -i "y" -p "Continue? [Y/n]" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) echo Exiting; exit;;

2
lgsm/functions/install_server_dir.sh

@ -18,7 +18,7 @@ if [ -d "${filesdir}" ]; then
fi
if [ -z "${autoinstall}" ]; then
while true; do
read -e -i "y" -p "Continue [y/N]" yn
read -e -i "y" -p "Continue [Y/n]" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;

Loading…
Cancel
Save