Skip to content

Commit

Permalink
Remove key.json file if it appears to be corrupted (#1706) (#1988)
Browse files Browse the repository at this point in the history
* Remove key.json file if it appears to be corrupted (#1706)

* Check with jq if key.json is parsable
  • Loading branch information
agners authored Jun 25, 2022
1 parent 7708de0 commit 26bca26
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[Unit]
FailureAction=reboot

[Service]
ExecStopPost=/usr/libexec/docker-failure
11 changes: 11 additions & 0 deletions buildroot-external/rootfs-overlay/usr/libexec/docker-failure
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh

if [ "$SERVICE_RESULT" = "exit-code" ] && [ "$EXIT_STATUS" = "1" ]; then
echo "Docker exited with exit status 1, this might be caused by corrupted key.json."
size=$(stat -c %s "/etc/docker/key.json")
echo "key.json: ${size} bytes"
if ! jq < "/etc/docker/key.json" > /dev/null || [ "${size}" -eq 0 ]; then
echo "key.json appears to be corrupted, it is not parsable. Removing it."
rm -f "/etc/docker/key.json"
fi
fi

0 comments on commit 26bca26

Please sign in to comment.