diff options
| author | Blake Romero <blake@blkrom.com> | 2024-04-18 23:00:28 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2024-04-18 23:00:28 +0100 |
| commit | 2f412e15fcb5c02996e3181853df85857d6eec12 (patch) | |
| tree | 2537dd2ad62523b936d71502f982a411fcf42490 | |
| parent | 52c412ba3cc80e98cd3ebb618f162482b5d19fd8 (diff) | |
Fix typo when setting tty config
| -rwxr-xr-x | install-artix.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install-artix.sh b/install-artix.sh index b53b8ba..e165f65 100755 --- a/install-artix.sh +++ b/install-artix.sh @@ -298,9 +298,9 @@ ${user} ALL=(ALL) NOPASSWD: PACMAN,REBOOT,STAT # Add user to autologin (note: password must match decryption password) if [[ "${autologin}" == true ]]; then cp /mnt/etc/dinit.d/config/agetty-default.conf \ - /mnt/etc/dinit.c/config/agetty-tty1.conf + /mnt/etc/dinit.d/config/agetty-tty1.conf sed "s/GETTY_ARGS=.*/GETTY_ARGS=\"--noclear --autologin ${user}\"/" \ - -i /mnt/etc/dinit.c/config/agetty-tty1.conf + -i /mnt/etc/dinit.d/config/agetty-tty1.conf fi # Add PACMAN download style |
