Clean up migrations a bit

This commit is contained in:
David Heinemeier Hansson
2025-07-09 19:13:37 -04:00
parent e7766926d9
commit a873a2cf96
4 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,8 @@
# Turn on bluetooth service so blueberry works out the box
echo "Let's turn on Bluetooth service so the controls work"
if systemctl is-enabled --quiet bluetooth.service && systemctl is-active --quiet bluetooth.service; then
# Bluetooth is already enabled, nothing to change
:
else
echo "Let's turn on Bluetooth service so the controls work"
sudo systemctl enable --now bluetooth.service
fi