Skip to content

Commit

Permalink
Fix blueos systemd service
Browse files Browse the repository at this point in the history
  • Loading branch information
itskalvik authored and patrickelectric committed Oct 29, 2024
1 parent 12ba5f0 commit d744290
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -227,13 +227,13 @@ docker create \
$BLUEOS_BOOTSTRAP

# Ensure docker can run without sudo
groupadd docker
usermod -aG docker pi
groupadd docker || true
usermod -aG docker pi || true

# Create service to start blueos-bootstrap container on boot
curl -fsSL "$ROOT/install/configs/blueos.service" -o /etc/systemd/system/blueos.service
systemctl start start-blueos
systemctl enable start-blueos
systemctl start blueos
systemctl enable blueos

# Configure network settings
## This should be after everything, otherwise network problems can happen
Expand Down

0 comments on commit d744290

Please sign in to comment.