Prevent users from applying updates, SLED12

How can I disable the Gnome popup that invites users to install available updates? This is an issue as users are installing kernel updates that then require other packages (such as VMWare Workstation) to be recompiled which can only be done by root. I have automatic updates configured omitting interactive patches.

Rob

Hi
Either via the desktop settings-> notifications, gsettings or
dconf-editor.

Via gsettings examle;

gsettings list-keys org.gnome.settings-daemon.plugins.updates

active
auto-download-updates
banned-firmware
connection-use-mobile
enable-check-firmware
frequency-get-updates
frequency-get-upgrades
frequency-refresh-cache
frequency-updates-notification
ignored-devices
last-updates-notification
media-repo-filenames
notify-distro-upgrades
priority
update-battery

gsettings get org.gnome.settings-daemon.plugins.updates active
true

gsettings set org.gnome.settings-daemon.plugins.updates active false
gsettings get org.gnome.settings-daemon.plugins.updates active
false


Cheers Malcolm °¿° LFCS, SUSE Knowledge Partner (Linux Counter #276890)
SUSE Linux Enterprise Desktop 12 | GNOME 3.10.1 | 3.12.48-52.27-default
If you find this post helpful and are logged into the web interface,
please show your appreciation and click on the star below… Thanks!

[QUOTE=malcolmlewis;30116]Hi
Either via the desktop settings-> notifications, gsettings or
dconf-editor.

[/QUOTE]

Desktop settings will do it on a per user basis. Can dconf-editor be used to make this a global setting for all users?

ROB

[QUOTE=ttrcf;30251]Desktop settings will do it on a per user basis. Can dconf-editor be used to make this a global setting for all users?

ROB[/QUOTE]

Yes, see here: https://help.gnome.org/admin/system-admin-guide/stable/dconf-lockdown.html.en

Thomas