How to disable “New release available” email notifications on Ubuntu

Once I noticed that new servers running Ubuntu Server 18.04 operating systems periodically send email notifications:

Cron <root@ixnfo.com> test -x /usr/sbin/anacron || ( cd / && run-parts –report /etc/cron.weekly )

/etc/cron.weekly/update-notifier-common:
New release ‘20.04.1 LTS’ available.
Run ‘do-release-upgrade’ to upgrade to it.

As it turned out, this is executed by the /etc/update-motd.d/91-release-upgrade script.

To disable notifications, open the /etc/update-manager/release-upgrades file in a text editor, find the line:

Prompt=lts

And change to:

Prompt=never

Or you can quickly change it with the command below:

sed -i 's/^Prompt.*/Prompt=never/' /etc/update-manager/release-upgrades

See also my article:
How to disable auto-update on Ubuntu 18

Leave a comment

Leave a Reply

Discover more from IT Blog

Subscribe now to keep reading and get access to the full archive.

Continue reading