From 0a18b9a4f1bc28185a35eb6cf26268028bf5d5ec Mon Sep 17 00:00:00 2001 From: Gabriel Lewertowski Date: Wed, 17 Apr 2024 12:31:11 +0200 Subject: [PATCH 1/2] [gitlab] set /etc/gitlab/ssl mode to '0755' --- ansible/roles/gitlab/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/gitlab/tasks/main.yml b/ansible/roles/gitlab/tasks/main.yml index ecd71ceafc..4c547cb232 100644 --- a/ansible/roles/gitlab/tasks/main.yml +++ b/ansible/roles/gitlab/tasks/main.yml @@ -52,7 +52,7 @@ state: 'directory' mode: '{{ item.mode }}' loop: - - { path: '/etc/gitlab/ssl', mode: '0775' } + - { path: '/etc/gitlab/ssl', mode: '0755' } - { path: '/etc/gitlab/trusted-certs', mode: '0755' } - name: Manage CA certificate symlinks in GitLab environment From 932de95e10bfc4652d352cb073e687e6cde5131c Mon Sep 17 00:00:00 2001 From: Maciej Delmanowski Date: Mon, 22 Apr 2024 09:25:05 +0200 Subject: [PATCH 2/2] Update Changelog --- CHANGELOG.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cbbf26db80..3d9b744e11 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -89,6 +89,16 @@ Updates of upstream application versions which needs to be synchronized with the Elasticsearch configuration via Ansible inventory (Kibana can be installed separately from Elasticsearch). +Fixed +~~~~~ + +:ref:`debops.gitlab` role +''''''''''''''''''''''''' + +- Fixed an issue with the :file:`/etc/gitlab/ssl/` directory changing its mode + from 0775 set by the role to 0755 set by the :command:`gitlab-ctl + reconfigure` command, making the role not idempotent. + Removed ~~~~~~~