Skip to content

Commit

Permalink
start comma.service after local-fs.target
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh committed Oct 12, 2024
1 parent 460e322 commit 6457644
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/ota_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ DATA_SAS_TOKEN=$(az storage container generate-sas --as-user --auth-mode login -

# Liftoff!
for name in $(cat $OTA_JSON | jq -r ".[] .name"); do
process_file $name
if grep -q "name.*${name}" $DIR/../firmware.json; then
echo "Skipping $name, found in firmware.json"
else
process_file $name
fi
done

echo "Done!"
1 change: 1 addition & 0 deletions userspace/files/comma.service
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[Unit]
After=local-fs.target

[Service]
Type=simple
Expand Down

0 comments on commit 6457644

Please sign in to comment.