diff --git a/playbooks/roles/services/setup/system/files/auto_update/pod-service-auto-update b/playbooks/roles/services/setup/system/files/auto_update/pod-service-auto-update index f7bad8d..e7d9404 100644 --- a/playbooks/roles/services/setup/system/files/auto_update/pod-service-auto-update +++ b/playbooks/roles/services/setup/system/files/auto_update/pod-service-auto-update @@ -67,8 +67,8 @@ if __name__ == "__main__": updated.add(image) if updated: - print(f"The following images have been updated: {', '.join(updated)}") + print(f"The following images have been updated: {', '.join(updated)}.") restart = functools.reduce(lambda x, y: x + y, [units[image] for image in updated]) - print(f"The following units will be restarted: {', '.join(restart)}") + print(f"The following units will be restarted: {', '.join(restart)}.") subprocess.run(["systemctl", "--user", "restart"] + restart, check=True)