From bd011b0eeef76c450cf32cafc542948a769adcd1 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Thu, 4 Jan 2024 15:31:46 +0100 Subject: [PATCH] Fix permissions for base directories With fixing linters [1] I have accidentally set incorrect mode for base directories to 0644 while it should be 0755. [1] https://review.opendev.org/c/openstack/openstack-ansible-lxc_hosts/+/888180 Closes-Bug: #2047593 Change-Id: Ied402f4f22ac333573c7144877da669251eccf8c --- tasks/lxc_pre_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/lxc_pre_install.yml b/tasks/lxc_pre_install.yml index 2e899ab6..364b71a9 100644 --- a/tasks/lxc_pre_install.yml +++ b/tasks/lxc_pre_install.yml @@ -19,7 +19,7 @@ state: "directory" owner: "root" group: "root" - mode: "0644" + mode: "0755" with_items: - /etc/lxc - /usr/local/bin