Skip to content

Commit 000caab

Browse files
fix: changed vm image to the bento one
1 parent 86e1bf8 commit 000caab

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

first-ansible-playbook/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vi: set ft=ruby :
33

44
Vagrant.configure("2") do |config|
5-
config.vm.box = "geerlingguy/rockylinux8"
5+
config.vm.box = "bento/rockylinux-9.5"
66

77
# Provisioning configuration for Ansible.
88
config.vm.provision "ansible" do |ansible|

nodejs-role/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7-
config.vm.box = "geerlingguy/rockylinux8"
7+
config.vm.box = "bento/rockylinux-9.5"
88
config.vm.network "private_network", ip: "192.168.56.56"
99
config.ssh.insert_key = false
1010
config.vm.synced_folder ".", "/vagrant", disabled: true

nodejs/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7-
config.vm.box = "geerlingguy/rockylinux8"
7+
config.vm.box = "bento/rockylinux-9.5"
88
config.vm.hostname = "nodejs.test"
99
config.vm.network "private_network", ip: "192.168.56.55"
1010
config.ssh.insert_key = false

orchestration/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2"
55

66
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
# General Vagrant VM configuration.
8-
config.vm.box = "geerlingguy/rockylinux8"
8+
config.vm.box = "bento/rockylinux-9.5"
99
config.ssh.insert_key = false
1010
config.vm.synced_folder ".", "/vagrant", disabled: true
1111
config.vm.provider :virtualbox do |v|

security/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vi: set ft=ruby :
33

44
Vagrant.configure("2") do |config|
5-
config.vm.box = "geerlingguy/rockylinux8"
5+
config.vm.box = "bento/rockylinux-9.5"
66
config.vm.synced_folder '.', '/vagrant', disabled: true
77
config.ssh.insert_key = false
88

0 commit comments

Comments
 (0)