diff --git a/scripts/restore-stuck-updates.sh b/scripts/restore-stuck-updates.sh
new file mode 100755
index 0000000000000000000000000000000000000000..f387d41b73919dcc3b9d98d74a69bf0e5cf0a61a
--- /dev/null
+++ b/scripts/restore-stuck-updates.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+oc get -o json drupalsite -A | jq -r '.items[] | select(.status.releaseID.current != .status.releaseID.failsafe)|"\(.metadata.name) \(.metadata.namespace) \(.status.releaseID.failsafe)"'| xargs -l bash -c 'export name=$(echo $2 | cut -d"-" -f -2); export spec=$(echo $2 |cut -d"-" -f 3"-"45); echo "[{\"op\": \"replace\",\"path\":\"/spec/version/name\",\"value\":\"${name}\"}, {\"op\":\"replace\",\"path\":\"/spec/version/releaseSpec\",\"value\":\"${spec}\"}]">patchs; oc patch drupalsite/$0 -n $1 --type json --patch-file patchs; sleep 1s'