Skip to content

Commit

Permalink
use centos9 for redmine box
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Sep 6, 2023
1 parent 12bcf83 commit aa4be79
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# vi: set ft=ruby :

CENTOS_8_BOX_URL = "https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-20220913.0.x86_64.vagrant-libvirt.box"
CENTOS_9_BOX_URL = "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-20230410.0.x86_64.vagrant-libvirt.box"
CENTOS_9_BOX_URL = "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-latest.x86_64.vagrant-libvirt.box"

Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
Expand Down Expand Up @@ -111,9 +111,11 @@ Vagrant.configure("2") do |config|

config.vm.define "redmine" do |override|
override.vm.hostname = "redmine"
override.vm.box = "centos/stream9"

override.vm.provider "libvirt" do |libvirt|
override.vm.provider "libvirt" do |libvirt, provider|
libvirt.memory = "2048"
provider.vm.box_url = CENTOS_9_BOX_URL
end
end
end

0 comments on commit aa4be79

Please sign in to comment.