Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
demingongo committed Feb 25, 2023
1 parent 5313d74 commit 7809f6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions arch/arch_install_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ read HOSTNAME_USER
if [[ ! -z "$HOSTNAME_USER" ]]; then
sudo hostnamectl set-hostname "$HOSTNAME_USER"
echo
echo "127.0.0.1 localhost" | tee -a /etc/hosts
echo "::1 localhost" | tee -a /etc/hosts
echo "127.0.1.1 $HOSTNAME_USER" | tee -a /etc/hosts
echo "127.0.0.1 localhost" | sudo tee -a /etc/hosts
echo "::1 localhost" | sudo tee -a /etc/hosts
echo "127.0.1.1 $HOSTNAME_USER" | sudo tee -a /etc/hosts
echo
echo
sudo hostnamectl
Expand Down

0 comments on commit 7809f6e

Please sign in to comment.