Browse Source

remove old comments

Casey DeLorme 1 year ago
parent
commit
b45e1fa34b
2 changed files with 2 additions and 16 deletions
  1. 2 13
      arch.sh
  2. 0 3
      setup/install.sh

+ 2 - 13
arch.sh

@@ -137,13 +137,7 @@ rsync -Pav /etc/skel/ "$(getent passwd root | cut -d: -f6)/"
 sed -i "/ssh-add/d" "$(getent passwd root | cut -d: -f6)/.bashrc"
 
 # install protontricks
-python3 -m pip install protontricks
-
-
-
-
-
-
+# python3 -m pip install protontricks
 
 # enable ccache and optimize cores for AUR
 sed -i 's/!ccache/ccache/' /etc/makepkg.conf
@@ -166,11 +160,6 @@ sudo -u $aur_username git clone https://aur.archlinux.org/numix-icon-theme-git.g
 
 # wev
 
-
-
-
-
-
 # cleanup aur user
 rm -rf /etc/sudoers.d/${aur_username}
 userdel -fr $aur_username
@@ -242,7 +231,7 @@ su $username -c "cd; if [ ! -f ~/.ssh/id_ed25519 ]; then ssh-keygen -q -t ed2551
 # install gvm loading from ~/.bashrc & ~/.bash_profile, and the latest go version
 su $username -c "if [ ! -d ~/.gvm ]; then GVM_NO_UPDATE_PROFILE=1 bash < <(curl -Ls https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer 2> /dev/null); fi"
 su $username -c 'grep "gvm" ~/.bash_profile &> /dev/null || echo -e "\n# load gvm\n[ -s $HOME/.gvm/scripts/gvm ] && . $HOME/.gvm/scripts/gvm" >> ~/.bash_profile'
-su $username -c ". ~/.gvm/scripts/gvm && gvm install go1.19.1 -B && gvm use go1.19.1 --default"
+su $username -c ". ~/.gvm/scripts/gvm && gvm install go1.21.3 -B && gvm use go1.21.3 --default"
 
 # configure user-space transmission
 if [ ! -f "/etc/systemd/system/transmission.service.d/local.conf" ]; then

+ 0 - 3
setup/install.sh

@@ -89,15 +89,12 @@ mount "/dev/${partitions[0]}" /mnt/boot
 
 # install base and base-devel package sets, and generate the fstab
 pacstrap /mnt base
-# pacstrap /mnt base base-devel linux linux-headers linux-firmware
 genfstab -Up /mnt > /mnt/etc/fstab
 
 # this assumes that arch.sh and install/ exist and will copy them to continue
 # @note: would prefer to copy to `/tmp` but `/mnt/tmp` from iso is a separate tmpfs
 mkdir -p /mnt/srv/arch-desktop
 cp -r ./ /mnt/srv/arch-desktop
-# cp -r install /mnt/srv/arch-desktop/
-# cp arch.sh /mnt/srv/arch-desktop/
 
 # proceed to automate arch-chroot installation and push output to a log file that gets copied to the new disk
 arch-chroot /mnt /srv/arch-desktop/arch.sh | tee arch-install.log