diff options
-rwxr-xr-x | install.sh | 5 | ||||
-rwxr-xr-x | mod.sh | 1 |
2 files changed, 2 insertions, 4 deletions
@@ -40,9 +40,8 @@ mkdir /mnt/efi mount ${PART}1 /mnt/efi pacstrap /mnt base genfstab -U /mnt >> /mnt/etc/fstab -cd $SCRIPTPATH/.. -cp -r dotfiles /mnt -touch dotfiles/installed +cp -r . /mnt +touch installed fi #echo "arch-chroot into the new system and run dotfiles/build.sh" arch-chroot /mnt << EOF @@ -2,4 +2,3 @@ export TMP=`mktemp` sed 's/supplicant-%I/supplicant/g' /usr/lib/systemd/system/wpa_supplicant@.service > $TMP mv $TMP /usr/lib/systemd/system/wpa_supplicant@.service -rm $TMP |