From cd00cb09ca158b98eb0b42fbb7573440e9b5bc2d Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Thu, 16 Dec 2021 23:26:20 +0100 Subject: [PATCH] tests: Fix the permissions of /etc/containers/toolbox.conf The RPM installs /etc/containers/toolbox.conf with its permissions set to 0644, and there's no reason for the test suite to deviate from that. Resolves: #2000807 --- tests/roles/set_image/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/roles/set_image/tasks/main.yml b/tests/roles/set_image/tasks/main.yml index 2112a92..0857d13 100644 --- a/tests/roles/set_image/tasks/main.yml +++ b/tests/roles/set_image/tasks/main.yml @@ -5,4 +5,4 @@ path: /etc/containers state: directory - name: Copy toolbox.conf file to set default image - copy: src={{ role_path }}/files/toolbox.conf dest=/etc/containers/toolbox.conf force=yes mode=0666 + copy: src={{ role_path }}/files/toolbox.conf dest=/etc/containers/toolbox.conf force=yes mode=0644