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

This commit is contained in:
ryan.kuba 2024-01-30 09:42:53 -08:00
parent 251a56a408
commit 07a5c84215
No known key found for this signature in database

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