mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
When testing OpenID Connect, I found that it wasn't working in a VM with NAT port forwarding. However, vagrant can use bridged networking instead. When the vagrant box is brought up, the user will be prompted for which network interface to bridge. Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
42 lines
1.3 KiB
Ruby
42 lines
1.3 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
require 'etc'
|
|
|
|
Vagrant.configure(2) do |config|
|
|
config.vm.box = "freedombox/freedombox-testing-dev"
|
|
config.vm.network "public_network"
|
|
config.vm.synced_folder ".", "/freedombox", owner: "plinth", group: "plinth"
|
|
config.vm.provider "virtualbox" do |vb|
|
|
vb.cpus = Etc.nprocessors
|
|
vb.memory = 2048
|
|
vb.linked_clone = true
|
|
vb.customize ["modifyvm", :id, "--firmware", "efi"]
|
|
end
|
|
config.vm.provision "shell", run: 'always', inline: <<-SHELL
|
|
# Disable automatic upgrades
|
|
echo -e 'APT::Periodic::Update-Package-Lists "0";\nAPT::Periodic::Unattended-Upgrade "0";' > //etc/apt/apt.conf.d/20auto-upgrades
|
|
# Do not run system plinth
|
|
systemctl stop plinth
|
|
systemctl disable plinth
|
|
SHELL
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
cd /freedombox/
|
|
make provision-dev
|
|
SHELL
|
|
config.vm.provision "tests", run: "never", type: "shell", path: "plinth/tests/functional/install.sh"
|
|
config.vm.post_up_message = "FreedomBox virtual machine is ready
|
|
for development. To get the IP address:
|
|
$ vagrant ssh
|
|
$ ip address show
|
|
|
|
FreedomBox interface will be available at https://<ip address>/freedombox
|
|
(with an invalid SSL certificate). To watch logs:
|
|
$ vagrant ssh
|
|
$ sudo freedombox-logs
|
|
"
|
|
|
|
config.vm.boot_timeout=1200
|
|
end
|