mirror of
https://github.com/tommytran732/Arch-Setup-Script
synced 2024-11-09 12:11:33 -05:00
hardcode hostname to localhost for desktop installs
Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
parent
f68b02c7e2
commit
adcb55a6e0
14
install.sh
14
install.sh
@ -94,12 +94,16 @@ user_password_prompt () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
hostname_prompt (){
|
hostname_prompt (){
|
||||||
output 'Enter your hostname:'
|
if [ "${install_mode}" = 'server' ]; then
|
||||||
read -r hostname
|
output 'Enter your hostname:'
|
||||||
|
read -r hostname
|
||||||
|
|
||||||
if [ -z "${hostname}" ]; then
|
if [ -z "${hostname}" ]; then
|
||||||
output 'You need to enter a hostname.'
|
output 'You need to enter a hostname.'
|
||||||
hostname_prompt
|
hostname_prompt
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
hostname='localhost'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user