From 9c412e5d9cfe157847805debbe7839e78bc75357 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Wed, 7 Dec 2022 20:34:40 +0100 Subject: [PATCH] Fix pod-service-auto-update script --- .../filesystem/common/usr/local/sbin/pod-service-auto-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/filesystem/common/usr/local/sbin/pod-service-auto-update b/playbooks/filesystem/common/usr/local/sbin/pod-service-auto-update index d99f05c..583ac4c 100644 --- a/playbooks/filesystem/common/usr/local/sbin/pod-service-auto-update +++ b/playbooks/filesystem/common/usr/local/sbin/pod-service-auto-update @@ -60,7 +60,7 @@ if __name__ == "__main__": new_digest = inspect["Digest"] if new_digest != original_digest: - updated.append(name) + updated.append(image) if updated: print(f"The following images have been updated: {updated}")