From 6886d6c0f573cdea61cf04a8ea0a7005b85d339c Mon Sep 17 00:00:00 2001 From: aviau Date: Fri, 26 Jun 2015 08:38:50 -0400 Subject: [PATCH] Vagrant: Actually sed Change-Id: I5fb604ba2df89157724137ab419fd4cda4690315 --- contrib/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/Vagrantfile b/contrib/Vagrantfile index e23f065..c070042 100644 --- a/contrib/Vagrantfile +++ b/contrib/Vagrantfile @@ -9,7 +9,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Disabling SELinux config.vm.provision :shell, :inline => "echo 0 > /sys/fs/selinux/enforce" - config.vm.provision :shell, :inline => "sed 's/SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config" + config.vm.provision :shell, :inline => "sed -i 's/SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config" # Install repos config.vm.provision :shell, :inline => "yum-config-manager --add-repo http://yum.surveil.io/centos_7/"