File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Vagrant.configure("2") do |config|
15
15
ubuntu_mirror = ""
16
16
vboxadd_version = nil
17
17
18
- config . vm . box = "bento/ubuntu-20 .04"
18
+ config . vm . box = "bento/ubuntu-22 .04"
19
19
20
20
config . vm . synced_folder "." , "/vagrant" , disabled : true
21
21
config . vm . synced_folder "." , "/srv/zulip" , docker_consistency : "z"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ $ vagrant ssh
8
8
You should see output that starts like this:
9
9
10
10
``` console
11
- Welcome to Ubuntu 20 .04.4 LTS (GNU/Linux 5.4 .0-107 -generic x86_64)
11
+ Welcome to Ubuntu 22 .04.3 LTS (GNU/Linux 5.15 .0-92 -generic x86_64)
12
12
```
13
13
14
14
Congrats, you're now inside the Zulip development environment!
Original file line number Diff line number Diff line change 1
1
The first time you run this command it will take some time because Vagrant
2
2
does the following:
3
3
4
- - downloads the base Ubuntu 20 .04 virtual machine/Docker image
4
+ - downloads the base Ubuntu 22 .04 virtual machine/Docker image
5
5
- configures this virtual machine/container for use with Zulip,
6
6
- creates a shared directory mapping your clone of the Zulip code inside the
7
7
virtual machine/container at ` ~/zulip `
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ so they are notified.
130
130
- Check "Monitoring", "IPv6", and "User data"
131
131
- Paste the contents of ` tools/droplets/new-droplet-image ` into the
132
132
text box which says ` Enter user data here... `
133
- - Name it e.g. ` base-ubuntu-20 -04.zulipdev.org `
133
+ - Name it e.g. ` base-ubuntu-22 -04.zulipdev.org `
134
134
1 . Add an A record for ` base.zulipdev.org ` to point to the new host.
135
135
1 . Wait for the host to boot.
136
136
1 . ` scp tools/droplets/new-droplet-image base.zulipdev.org:/tmp/new-droplet-image `
Original file line number Diff line number Diff line change 1
- FROM ubuntu:20 .04
1
+ FROM ubuntu:22 .04
2
2
3
3
ARG UBUNTU_MIRROR
4
4
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ set -o pipefail
12
12
13
13
# Set the MOTD on the system to have Zulip instructions
14
14
sudo ln -nsf /srv/zulip/tools/setup/dev-motd /etc/update-motd.d/99-zulip-dev
15
- sudo rm -f /etc/update-motd.d/10-help-text
16
- sudo dpkg --purge landscape-client landscape- common ubuntu-release-upgrader-core update-manager-core update-notifier-common ubuntu-server
15
+ sudo rm -f /etc/update-motd.d/10-help-text /etc/update-motd.d/99-bento
16
+ sudo dpkg --purge landscape-common
17
17
sudo dpkg-divert --add --rename /etc/default/motd-news
18
18
sudo sh -c ' echo ENABLED=0 > /etc/default/motd-news'
19
19
You can’t perform that action at this time.
0 commit comments