mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 12:25:53 +02:00
update vagrant image for fc39, fc40 and ubuntu24.04 (#3042)
* update test distribution * add skip file to avoid mysql tests * add ubuntu 24.04
This commit is contained in:
parent
b8ee31ade2
commit
95bc5880f4
7 changed files with 30 additions and 4 deletions
0
test/ansible/vagrant/fedora-33/skip → test/ansible/vagrant/fedora-37/skip
Executable file → Normal file
0
test/ansible/vagrant/fedora-33/skip → test/ansible/vagrant/fedora-37/skip
Executable file → Normal file
0
test/ansible/vagrant/fedora-34/skip → test/ansible/vagrant/fedora-38/skip
Executable file → Normal file
0
test/ansible/vagrant/fedora-34/skip → test/ansible/vagrant/fedora-38/skip
Executable file → Normal file
|
@ -1,8 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
Vagrant.configure('2') do |config|
|
||||
# config.vm.box = "fedora/33-cloud-base"
|
||||
config.vm.box = 'generic/fedora33'
|
||||
config.vm.box = "fedora/39-cloud-base"
|
||||
config.vm.provision "shell", inline: <<-SHELL
|
||||
SHELL
|
||||
end
|
9
test/ansible/vagrant/fedora-39/skip
Normal file
9
test/ansible/vagrant/fedora-39/skip
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
die() {
|
||||
echo "$@" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
[ "${DB_BACKEND}" = "mysql" ] && die "mysql role does not support this distribution"
|
||||
exit 0
|
|
@ -1,8 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
Vagrant.configure('2') do |config|
|
||||
# config.vm.box = "fedora/34-cloud-base"
|
||||
config.vm.box = 'generic/fedora34'
|
||||
config.vm.box = "fedora/39-cloud-base"
|
||||
config.vm.provision "shell", inline: <<-SHELL
|
||||
SHELL
|
||||
end
|
9
test/ansible/vagrant/fedora-40/skip
Normal file
9
test/ansible/vagrant/fedora-40/skip
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
die() {
|
||||
echo "$@" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
[ "${DB_BACKEND}" = "mysql" ] && die "mysql role does not support this distribution"
|
||||
exit 0
|
10
test/ansible/vagrant/ubuntu-24-04-noble/Vagrantfile
vendored
Normal file
10
test/ansible/vagrant/ubuntu-24-04-noble/Vagrantfile
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
Vagrant.configure('2') do |config|
|
||||
config.vm.box = 'alvistack/ubuntu-24.04'
|
||||
config.vm.provision "shell", inline: <<-SHELL
|
||||
SHELL
|
||||
end
|
||||
|
||||
common = '../common'
|
||||
load common if File.exist?(common)
|
Loading…
Add table
Add a link
Reference in a new issue