more verbose
This commit is contained in:
parent
097a66aaa2
commit
4040beed64
1 changed files with 9 additions and 5 deletions
14
archfi
14
archfi
|
@ -604,8 +604,6 @@ formatdevice(){
|
||||||
|
|
||||||
mountparts(){
|
mountparts(){
|
||||||
clear
|
clear
|
||||||
echo "Mounting to /mnt ..."
|
|
||||||
echo "-----------------"
|
|
||||||
echo "mount $rootdev /mnt"
|
echo "mount $rootdev /mnt"
|
||||||
mount $rootdev /mnt
|
mount $rootdev /mnt
|
||||||
echo "mkdir /mnt/{boot,home}"
|
echo "mkdir /mnt/{boot,home}"
|
||||||
|
@ -910,10 +908,13 @@ archsettime(){
|
||||||
clear
|
clear
|
||||||
echo "ln -sf /usr/share/zoneinfo/$timezone /mnt/etc/localtime"
|
echo "ln -sf /usr/share/zoneinfo/$timezone /mnt/etc/localtime"
|
||||||
ln -sf /usr/share/zoneinfo/$timezone /mnt/etc/localtime
|
ln -sf /usr/share/zoneinfo/$timezone /mnt/etc/localtime
|
||||||
|
pressanykey
|
||||||
|
|
||||||
if (whiptail --backtitle "$apptitle" --title "$txtsettime" --yesno "$txtuseutcclock" 0 0) then
|
if (whiptail --backtitle "$apptitle" --title "$txtsettime" --yesno "$txtuseutcclock" 0 0) then
|
||||||
|
clear
|
||||||
archchroot settimeutc
|
archchroot settimeutc
|
||||||
else
|
else
|
||||||
|
clear
|
||||||
archchroot settimelocal
|
archchroot settimelocal
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -933,8 +934,6 @@ archsettimelocalchroot(){
|
||||||
|
|
||||||
archsetrootpassword(){
|
archsetrootpassword(){
|
||||||
clear
|
clear
|
||||||
echo "$txtsetrootpassword :"
|
|
||||||
echo ""
|
|
||||||
archchroot setrootpassword
|
archchroot setrootpassword
|
||||||
pressanykey
|
pressanykey
|
||||||
}
|
}
|
||||||
|
@ -1122,7 +1121,11 @@ installarchdi(){
|
||||||
case $sel in
|
case $sel in
|
||||||
"$txtarchdiinstallandlaunch") archchroot archdiinstallandlaunch;;
|
"$txtarchdiinstallandlaunch") archchroot archdiinstallandlaunch;;
|
||||||
"$txtarchdilaunch") archchroot archdilaunch;;
|
"$txtarchdilaunch") archchroot archdilaunch;;
|
||||||
"$txtarchdiinstall") archchroot archdiinstall;;
|
"$txtarchdiinstall")
|
||||||
|
clear
|
||||||
|
archchroot archdiinstall
|
||||||
|
pressanykey
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -1144,6 +1147,7 @@ archdidownload(){
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
echo "curl -L $archdiurl >archdi"
|
||||||
curl -L $archdiurl >archdi
|
curl -L $archdiurl >archdi
|
||||||
}
|
}
|
||||||
archdiinstallandlaunchchroot(){
|
archdiinstallandlaunchchroot(){
|
||||||
|
|
Loading…
Reference in a new issue