From dc11f197a179c524130a0b97217c24d29e51f317 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 29 May 2019 16:04:13 -0700 Subject: [PATCH] Vagrantfile: Update virtualbox image to bionic. This is a key part of our process to deprecate Ubuntu trusty: migrating the Zulip development environment on macOS and Window to Ubuntu Bionic. As part of this, we need to remove ubuntu-server, because it now depends on update-notifier-common. Signed-off-by: Anders Kaseorg --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 6b952f7902..e27d013a8f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -147,7 +147,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end config.vm.provider "virtualbox" do |vb, override| - override.vm.box = "ubuntu/trusty64" + override.vm.box = "ubuntu/bionic64" # An unnecessary log file gets generated when running vagrant up for the # first time with the Ubuntu Bionic box. This looks like it is being # caused upstream by the base box containing a Vagrantfile with a similar @@ -185,7 +185,7 @@ set -o pipefail # Set the MOTD on the system to have Zulip instructions sudo ln -nsf /srv/zulip/tools/setup/dev-motd /etc/update-motd.d/99-zulip-dev sudo rm -f /etc/update-motd.d/10-help-text -sudo dpkg --purge landscape-client landscape-common ubuntu-release-upgrader-core update-manager-core update-notifier-common +sudo dpkg --purge landscape-client landscape-common ubuntu-release-upgrader-core update-manager-core update-notifier-common ubuntu-server sudo dpkg-divert --add --rename /etc/default/motd-news sudo sh -c 'echo ENABLED=0 > /etc/default/motd-news'