Skip to content
Snippets Groups Projects

Remove the 'System Not Registered' notification

Merged Marta Vila Fernandes requested to merge notif into master
2 files
+ 28
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -113,3 +113,17 @@ As root run:
```
to apply all available updates.
## Remove the 'System Not Registered' notification from GNOME and Subscription-Manager Cockpit
To get rid of the System Not Registered notification, please run the following commands as root:
```
yum remove -y subscription-manager-cockpit insights-client rhc
if [ -f /etc/xdg/autostart/org.gnome.SettingsDaemon.Subscription.desktop ]; then
sed -i 's|^Exec=/usr/libexec/gsd-subman|#Exec=/usr/libexec/gsd-subman|' /etc/xdg/autostart/org.gnome.SettingsDaemon.Subscription.desktop
fi
if [ -f /lib/systemd/user/org.gnome.SettingsDaemon.Subscription.service ]; then
systemctl --global mask org.gnome.SettingsDaemon.Subscription.service
fi
```
\ No newline at end of file
Loading