fix(metal): disable SELinux on dev VM

This commit is contained in:
Khue Doan 2021-12-16 20:55:55 +07:00
parent b505e66d67
commit 8e002c7da0

1
metal/Vagrantfile vendored
View File

@ -27,6 +27,7 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: <<-SHELL
mkdir /#{group_vars['ansible_user']}/.ssh
cat /tmp/id_ed25519.pub >> /#{group_vars['ansible_user']}/.ssh/authorized_keys
setenforce Permissive
dnf install -y iscsi-initiator-utils
systemctl enable --now iscsid
SHELL