removed irc config until further notice

This commit is contained in:
sose 2020-09-05 03:16:49 -07:00
parent 2fb6dbee64
commit b259435b91
1 changed files with 27 additions and 27 deletions

View File

@ -35,33 +35,33 @@ echo "Connection success!"
echo "Configuring user..." echo "Configuring user..."
configure_user || fail configure_user || fail
echo "User configured!" echo "User configured!"
clear #clear
echo "=== IRC Configuration ===" #echo "=== IRC Configuration ==="
echo "Now we will begin configuring a WeeChat IRC relay" #echo "Now we will begin configuring a WeeChat IRC relay"
echo "Select the option that applies to you:" #echo "Select the option that applies to you:"
echo "1. I have a WeeChat relay configured on my chosen tilde" #echo "1. I have a WeeChat relay configured on my chosen tilde"
echo "2. I do not have a WeeChat relay configured on my chosen tilde" #echo "2. I do not have a WeeChat relay configured on my chosen tilde"
read -r choice #read -r choice
while : #while :
do #do
case "$choice" in # case "$choice" in
"1") # "1")
clear # clear
set_relay_config "existing" # set_relay_config "existing"
break # break
;; # ;;
"2") # "2")
clear # clear
echo "Since no WeeChat relay exists, a new one will be configured" # echo "Since no WeeChat relay exists, a new one will be configured"
echo "First, provide a port number and password for this relay" # echo "First, provide a port number and password for this relay"
set_relay_config "new" # set_relay_config "new"
break # break
;; # ;;
"*") # "*")
echo "Please enter a valid option" # echo "Please enter a valid option"
;; # ;;
esac # esac
done #done
echo "All done! Enjoy using Tildelinux!" echo "All done! Enjoy using Tildelinux!"
rm ./setup_incomplete rm ./setup_incomplete
systemctl restart 'getty@tty1.service' systemctl restart 'getty@tty1.service'