Skip to content

Commit 9df36e4

Browse files
committed
Update Vagrantfile.
1 parent 698c29b commit 9df36e4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Vagrantfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ Vagrant.configure("2") do |config|
1919
end
2020
$script = <<-SCRIPT
2121
apt-get -y update --quiet
22-
apt-get -y install python3.9 python3-pip ca-certificates curl gnupg lsb-release
23-
wget "https://download.checkmk.com/checkmk/2.1.0p24/check-mk-raw-2.1.0p24_0.focal_amd64.deb" -O /tmp/checkmk-stable.deb
24-
wget "https://download.checkmk.com/checkmk/2.2.0-$(date +%Y.%m.%d)/check-mk-raw-2.2.0-$(date +%Y.%m.%d)_0.focal_amd64.deb" -O /tmp/checkmk-beta.deb
25-
apt-get install -y /tmp/checkmk-stable.deb
22+
apt-get -y install python3-pip ca-certificates curl gnupg lsb-release
23+
wget "https://download.checkmk.com/checkmk/2.1.0p29/check-mk-raw-2.1.0p29_0.focal_amd64.deb" -O /tmp/checkmk-oldstable.deb
24+
wget "https://download.checkmk.com/checkmk/2.2.0p3/check-mk-raw-2.2.0p3_0.focal_amd64.deb" -O /tmp/checkmk-stable.deb
25+
apt-get install -y /tmp/checkmk-oldstable.deb
2626
omd create --admin-password 'd7589df1-01db-4eda-9858-dbcff8d0c361' stable
27-
apt-get install -y /tmp/checkmk-beta.deb
27+
apt-get install -y /tmp/checkmk-stable.deb
2828
omd create --admin-password 'd7589df1-01db-4eda-9858-dbcff8d0c361' beta
2929
omd status -b stable || omd start stable
3030
omd status -b beta || omd start beta
31-
python3.9 -m pip install -r /vagrant/requirements.txt
31+
python3 -m pip install -r /vagrant/requirements.txt
3232
sudo -u vagrant ansible-galaxy collection install -f -r /vagrant/requirements.yml
3333
mkdir -p /home/vagrant/ansible_collections/checkmk/general
3434
mkdir -p /etc/apt/keyrings

0 commit comments

Comments
 (0)