forked from Aiven-Open/pghoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
81 lines (65 loc) · 3.35 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*- mode: ruby -*-
# vi: set ft=ruby :
if ENV['VAGRANT_DEFAULT_PROVIDER'] == "libvirt" and (ARGV[0] == "up" or ARGV[0] == "destroy")
unless system("sudo -n true 2> /dev/null")
puts('Sudo is required, do a sudo true')
exit
end
end
# to be able to modify tests outside of vagrant, we use nfs mount point, for more
# information refer https://www.vagrantup.com/docs/synced-folders/nfs
Vagrant.configure("2") do |config|
config.vm.box = "generic/ubuntu2004"
config.vm.synced_folder ".", "/vagrant", type: "nfs"
$script = <<-SCRIPT
ssh-keyscan localhost >> ~/.ssh/known_hosts
ssh-keygen -N '' -f ~/.ssh/id_rsa
SCRIPT
config.vm.provision "shell", inline: $script, privileged: false
$script = <<-SCRIPT
export DEBIAN_FRONTEND="noninteractive"
# do not disable ipv6, the base vagrant image has disabled this
sysctl net.ipv6.conf.all.disable_ipv6=0
sed -i '/net.ipv6.conf.all.disable_ipv6/d' /etc/sysctl.conf
echo "deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main" > /etc/apt/sources.list.d/pgdg.list
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
add-apt-repository -y ppa:deadsnakes/ppa
apt-get update
apt-get install -y build-essential libsnappy-dev postgresql-common
# no point creating the default cluster as its not used for tests
sed -i "s/^#start_conf.*/start_conf='manual'/g" /etc/postgresql-common/createcluster.conf
sed -i "s/^#create_main_cluster.*/create_main_cluster=false/g" /etc/postgresql-common/createcluster.conf
apt-get install -y python{3.8,3.9,3.10} python{3.8,3.9,3.10}-dev python{3.8,3.9,3.10}-venv
apt-get install -y postgresql-{11,12,13,14,15,16} postgresql-server-dev-{11,12,13,14,15,16}
username="$(< /dev/urandom tr -dc a-z | head -c${1:-32};echo;)"
password=$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo;)
useradd -m -U $username
echo "$username:$password" > /home/vagrant/pghoard-test-sftp-user
echo "$username:$password" | chpasswd
mkdir -p /home/$username/.ssh
cat /home/vagrant/.ssh/id_rsa.pub >> /home/$username/.ssh/authorized_keys
chown -R $username: /home/$username/.ssh
chmod -R go-rwx /home/$username/.ssh
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
# later versions have the Port 22 config disabled (cos its the default), so need to
# explicitly enable it to avoid ssh only using port 23.
echo "Port 22" >> /etc/ssh/sshd_config
# this is for sftp testing
echo "Port 23" >> /etc/ssh/sshd_config
echo "Match LocalPort 22" >> /etc/ssh/sshd_config
echo " DenyUsers $username" >> /etc/ssh/sshd_config
systemctl reload ssh
SCRIPT
config.vm.provision "shell", inline: $script, privileged: true
$script = <<-SCRIPT
versions=(3.8 3.9 3.10)
for version in "${versions[@]}"; do
python${version} -m venv venv${version}
source ~/venv${version}/bin/activate
pip install --upgrade pip
pip install -r /vagrant/requirements.txt
pip install --upgrade -r /vagrant/requirements.dev.txt
done
SCRIPT
config.vm.provision "shell", inline: $script, privileged: false
end