fix setup macos

This commit is contained in:
Tomas Mirchev 2025-02-24 16:14:28 +00:00
parent d3dcd5804d
commit ddb6ea07c8

View File

@ -30,20 +30,20 @@ fi
echo ""
echo "Installing brew packages..."
/bin/bash ../scripts/macos-brew_restore.sh
/bin/bash ./scripts/macos-brew_restore.sh
echo ""
echo "Linking configs..."
python3 ../manage.py link macos --force
python3 ./manage.py link macos --force
echo ""
echo "Changing hostname..."
/bin/bash ../scripts/macos-change_hostname.sh "$NEW_HOSTNAME"
/bin/bash ./scripts/macos-change_hostname.sh "$NEW_HOSTNAME"
echo ""
echo "Creating internal SSH keys..."
/bin/bash ../scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "internal"
/bin/bash ../scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "git"
/bin/bash ./scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "internal"
/bin/bash ./scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "git"
echo ""
echo "Setup complete. Follow the next steps to finalize your environment:"