From 07a5c842157e163fa48db2150a3638031c688f4a Mon Sep 17 00:00:00 2001 From: "ryan.kuba" Date: Tue, 30 Jan 2024 09:42:53 -0800 Subject: [PATCH] KASM-5510 remove gnome-keyring-daemon bin if it exists in desktop images --- src/ubuntu/install/cleanup/cleanup.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ubuntu/install/cleanup/cleanup.sh b/src/ubuntu/install/cleanup/cleanup.sh index b530370..4a99fa1 100644 --- a/src/ubuntu/install/cleanup/cleanup.sh +++ b/src/ubuntu/install/cleanup/cleanup.sh @@ -54,3 +54,8 @@ rm -f \ /etc/xdg/autostart/xfce4-screensaver.desktop \ /etc/xdg/autostart/xfce-polkit.desktop \ /etc/xdg/autostart/xscreensaver.desktop + +# Bins we don't want in the final image +if which gnome-keyring-daemon; then + rm -f $(which gnome-keyring-daemon) +fi