Vagrantfile: fix comments about SELinux

SELinux has been enforcing since commit a7f24b29c2
(PR 4698, v1.5.0)

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
Akihiro Suda 2023-01-03 20:51:12 +09:00
parent 88c8480a38
commit 12955d291e
No known key found for this signature in database
GPG Key ID: 49524C6F9F638F1A

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"