From 8e002c7da0bee51d067ae7e0651aad1075007bf0 Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Thu, 16 Dec 2021 20:55:55 +0700 Subject: [PATCH] fix(metal): disable SELinux on dev VM --- metal/Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/metal/Vagrantfile b/metal/Vagrantfile index e6ca84c7..4e8fa5a8 100644 --- a/metal/Vagrantfile +++ b/metal/Vagrantfile @@ -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