Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion first-ansible-playbook/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# vi: set ft=ruby :

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

# Provisioning configuration for Ansible.
config.vm.provision "ansible" do |ansible|
Expand Down
2 changes: 1 addition & 1 deletion nodejs-role/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "geerlingguy/rockylinux8"
config.vm.box = "bento/rockylinux-9.5"
config.vm.network "private_network", ip: "192.168.56.56"
config.ssh.insert_key = false
config.vm.synced_folder ".", "/vagrant", disabled: true
Expand Down
2 changes: 1 addition & 1 deletion nodejs/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "geerlingguy/rockylinux8"
config.vm.box = "bento/rockylinux-9.5"
config.vm.hostname = "nodejs.test"
config.vm.network "private_network", ip: "192.168.56.55"
config.ssh.insert_key = false
Expand Down
2 changes: 1 addition & 1 deletion orchestration/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# General Vagrant VM configuration.
config.vm.box = "geerlingguy/rockylinux8"
config.vm.box = "bento/rockylinux-9.5"
config.ssh.insert_key = false
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.provider :virtualbox do |v|
Expand Down
2 changes: 1 addition & 1 deletion security/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# vi: set ft=ruby :

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

Expand Down
Loading