diff options
author | MatMoul <matmoul@gmail.com> | 2015-11-01 18:00:26 +0100 |
---|---|---|
committer | MatMoul <matmoul@gmail.com> | 2015-11-01 18:00:26 +0100 |
commit | 4040beed644876924528375033685c558554cbcc (patch) | |
tree | 4727bae8293a14723c4b2c72068906d9fea25581 | |
parent | 097a66aaa26c2227a1a9bf68221e1a2a1e2220fa (diff) | |
download | hyperfi-4040beed644876924528375033685c558554cbcc.tar.lz hyperfi-4040beed644876924528375033685c558554cbcc.tar.xz hyperfi-4040beed644876924528375033685c558554cbcc.zip |
more verbose
-rw-r--r-- | archfi | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -604,8 +604,6 @@ formatdevice(){ mountparts(){ clear - echo "Mounting to /mnt ..." - echo "-----------------" echo "mount $rootdev /mnt" mount $rootdev /mnt echo "mkdir /mnt/{boot,home}" @@ -910,10 +908,13 @@ archsettime(){ clear echo "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 + clear archchroot settimeutc else + clear archchroot settimelocal fi @@ -933,8 +934,6 @@ archsettimelocalchroot(){ archsetrootpassword(){ clear - echo "$txtsetrootpassword :" - echo "" archchroot setrootpassword pressanykey } @@ -1122,7 +1121,11 @@ installarchdi(){ case $sel in "$txtarchdiinstallandlaunch") archchroot archdiinstallandlaunch;; "$txtarchdilaunch") archchroot archdilaunch;; - "$txtarchdiinstall") archchroot archdiinstall;; + "$txtarchdiinstall") + clear + archchroot archdiinstall + pressanykey + ;; esac fi fi @@ -1144,6 +1147,7 @@ archdidownload(){ ;; esac fi + echo "curl -L $archdiurl >archdi" curl -L $archdiurl >archdi } archdiinstallandlaunchchroot(){ |