Merge pull request #7908 from AkihiroSuda/vagrantfile-fix-comments

Vagrantfile: fix comments about SELinux
This commit is contained in:
Mike Brown
2023-01-03 11:19:08 -06:00
committed by GitHub

8
Vagrantfile vendored
View File

@@ -222,8 +222,8 @@ EOF
SHELL SHELL
end end
# SELinux is permissive by default (via provisioning) in this VM. To re-run with SELinux enforcing: # SELinux is Enforcing by default (via provisioning) in this VM. To re-run with SELinux disabled:
# vagrant up --provision-with=selinux-enforcing,test-integration # SELINUX=Disabled vagrant up --provision-with=selinux,test-integration
# #
config.vm.provision "test-integration", type: "shell", run: "never" do |sh| config.vm.provision "test-integration", type: "shell", run: "never" do |sh|
sh.upload_path = "/tmp/test-integration" sh.upload_path = "/tmp/test-integration"
@@ -245,8 +245,8 @@ EOF
SHELL SHELL
end end
# SELinux is permissive by default (via provisioning) in this VM. To re-run with SELinux enforcing: # SELinux is Enforcing by default (via provisioning) in this VM. To re-run with SELinux disabled:
# vagrant up --provision-with=selinux-enforcing,test-cri # SELINUX=Disabled vagrant up --provision-with=selinux,test-cri
# #
config.vm.provision "test-cri", type: "shell", run: "never" do |sh| config.vm.provision "test-cri", type: "shell", run: "never" do |sh|
sh.upload_path = "/tmp/test-cri" sh.upload_path = "/tmp/test-cri"