We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ba5f0 commit d744290Copy full SHA for d744290
install/install.sh
@@ -227,13 +227,13 @@ docker create \
227
$BLUEOS_BOOTSTRAP
228
229
# Ensure docker can run without sudo
230
-groupadd docker
231
-usermod -aG docker pi
+groupadd docker || true
+usermod -aG docker pi || true
232
233
# Create service to start blueos-bootstrap container on boot
234
curl -fsSL "$ROOT/install/configs/blueos.service" -o /etc/systemd/system/blueos.service
235
-systemctl start start-blueos
236
-systemctl enable start-blueos
+systemctl start blueos
+systemctl enable blueos
237
238
# Configure network settings
239
## This should be after everything, otherwise network problems can happen
0 commit comments