Vagrant: add desktop to Vagrant

This commit is contained in:
Peter Barker 2021-02-10 14:09:01 +11:00 committed by Peter Barker
parent 904b493809
commit 4020308d40
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,42 @@
#!/bin/bash
echo "---------- $0 start ----------"
set -e
set -x
/vagrant/Tools/vagrant/initvagrant.sh
VAGRANT_USER=ubuntu
if [ -e /home/vagrant ]; then
# prefer vagrant user
VAGRANT_USER=vagrant
fi
apt-get update
apt-get install -y ubuntu-desktop
GDB_CONF="/etc/gdm3/custom.conf"
perl -pe 's/# AutomaticLoginEnable = true/AutomaticLoginEnable = true/' -i "$GDB_CONF"
perl -pe 's/# AutomaticLogin = user1/AutomaticLogin = vagrant/' -i "$GDB_CONF"
cat >>/etc/xdg/autostart/open-gnome-terminal.desktop <<EOF
[Desktop Entry]
Type=Application
Name=Start gnome terminal
TryExec=gnome-terminal
Exec=gnome-terminal
X-GNOME-Autostart-Phase=Application
EOF
# disable the screensaver:
sudo -u "$VAGRANT_USER" dbus-launch gsettings set org.gnome.desktop.session idle-delay 0
# don't show the initial setup crap:
echo "yes" | sudo -u "$VAGRANT_USER" dd of=/home/"$VAGRANT_USER"/.config/gnome-initial-setup-done
# start the graphical environment right now:
systemctl isolate graphical.target
echo "---------- $0 end ----------"

11
Vagrantfile vendored
View File

@ -167,6 +167,17 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
focal.vm.boot_timeout = 1200
end
# 20.04 LTS
config.vm.define "focal-desktop", autostart: false do |focal|
focal.vm.box = "ubuntu/focal64"
focal.vm.provision :shell, path: "Tools/vagrant/initvagrant-desktop.sh"
focal.vm.provider "virtualbox" do |vb|
vb.name = "ArduPilot (focal-desktop)"
vb.gui = true
end
focal.vm.boot_timeout = 1500
end
# 20.10
config.vm.define "groovy", autostart: false do |groovy|
groovy.vm.box = "ubuntu/groovy64"