Merge branch 'feature/KASM-5510-gnome-keyring-popup' into 'develop'

KASM-5510 remove gnome-keyring-daemon bin if it exists in desktop images

Closes KASM-5510

See merge request kasm-technologies/internal/workspaces-images!165
This commit is contained in:
Justin Travis
2024-01-30 19:35:08 +00:00

View File

@@ -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