Skip to content

Commit d744290

Browse files
itskalvikpatrickelectric
authored andcommitted
Fix blueos systemd service
1 parent 12ba5f0 commit d744290

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

install/install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ docker create \
227227
$BLUEOS_BOOTSTRAP
228228

229229
# Ensure docker can run without sudo
230-
groupadd docker
231-
usermod -aG docker pi
230+
groupadd docker || true
231+
usermod -aG docker pi || true
232232

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

238238
# Configure network settings
239239
## This should be after everything, otherwise network problems can happen

0 commit comments

Comments
 (0)