enhance: add opensuse leap 15 vagrant (#3329)

This commit is contained in:
Laurence Jones 2024-11-13 14:15:01 +00:00 committed by GitHub
parent dd52e137ee
commit 4be84b8a0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,10 @@
# frozen_string_literal: true
Vagrant.configure('2') do |config|
config.vm.box = "opensuse/Leap-15.6.x86_64"
config.vm.provision "shell", inline: <<-SHELL
SHELL
end
common = '../common'
load common if File.exist?(common)

View 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