2017-02-04 17:46:12 +01:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
|
|
|
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
|
|
|
# configures the configuration version (we support older styles for
|
|
|
|
# backwards compatibility). Please don't change it unless you know what
|
|
|
|
# you're doing.
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
# The most common configuration options are documented and commented below.
|
|
|
|
# For a complete reference, please see the online documentation at
|
|
|
|
# https://docs.vagrantup.com.
|
|
|
|
|
2017-09-11 11:14:53 +02:00
|
|
|
config.vm.define :ynh_tests
|
|
|
|
config.vm.box = "yunohost/jessie-stable"
|
2017-02-04 17:46:12 +01:00
|
|
|
|
|
|
|
# Disable auto updates checks. Run `vagrant outdated` to perform manual updates.
|
|
|
|
config.vm.box_check_update = false
|
|
|
|
|
|
|
|
# Create a forwarded port mapping which allows access to a specific port
|
|
|
|
# within the machine from a port on the host machine. In the example below,
|
|
|
|
# accessing "localhost:8080" will access port 80 on the guest machine.
|
|
|
|
# config.vm.network "forwarded_port", guest: 80, host: 8080
|
|
|
|
# config.vm.network "forwarded_port", guest: 443, host: 8443
|
|
|
|
|
|
|
|
# Create a private network, which allows host-only access to the machine
|
|
|
|
# using a specific IP.
|
|
|
|
config.vm.network "private_network", ip: "192.168.33.10"
|
|
|
|
|
|
|
|
# Share an additional folder to the guest VM. The first argument is
|
|
|
|
# the path on the host to the actual folder. The second argument is
|
|
|
|
# the path on the guest to mount the folder. And the optional third
|
|
|
|
# argument is a set of non-required options.
|
|
|
|
config.vm.synced_folder "./", "/vagrant"
|
|
|
|
|
|
|
|
# Enable provisioning with a shell script. Additional provisioners such as
|
|
|
|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
|
|
|
# documentation for more information about their specific syntax and use.
|
|
|
|
config.vm.provision "shell", privileged: false, keep_color: true, inline: <<-SHELL
|
2017-09-11 11:14:53 +02:00
|
|
|
DOMAIN=ynh-tests.local
|
2017-02-04 17:46:12 +01:00
|
|
|
YUNOHOST_ADMIN_PASSWORD="alpine"
|
|
|
|
|
|
|
|
# Stop on first error
|
|
|
|
set -e
|
|
|
|
|
2017-09-11 11:14:53 +02:00
|
|
|
if ! [[ -f /etc/yunohost/installed ]]; then
|
2017-10-12 07:01:22 +02:00
|
|
|
# Upgrade Yunohost and the system packages (disabled)
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get upgrade --yes
|
|
|
|
sudo apt-get dist-upgrade --yes
|
|
|
|
|
|
|
|
# Finish Yunohost installation
|
2017-09-11 11:14:53 +02:00
|
|
|
sudo yunohost tools postinstall --domain ${DOMAIN} --password ${YUNOHOST_ADMIN_PASSWORD} --ignore-dyndns
|
2017-02-04 17:46:12 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Install lxc
|
2017-09-11 11:14:53 +02:00
|
|
|
# if ! hash lxc-start 2>/dev/null; then
|
|
|
|
# DEBIAN_FRONTEND=noninteractive sudo apt-get update
|
|
|
|
# DEBIAN_FRONTEND=noninteractive sudo apt-get install --yes --fix-missing lxc
|
|
|
|
# fi
|
2017-02-04 17:46:12 +01:00
|
|
|
|
|
|
|
# Install package_check
|
|
|
|
if ! [ -f "$HOME/package_check/package_check.sh" ]; then
|
|
|
|
git clone https://github.com/YunoHost/package_check
|
|
|
|
fi
|
|
|
|
SHELL
|
|
|
|
end
|