from staging to main, update to 2024.12.0 #40

Merged
meaz merged 14 commits from staging into main 2025-01-07 21:06:13 +01:00
Owner
No description provided.
muppeth was assigned by meaz 2025-01-05 08:02:29 +01:00
meaz added 12 commits 2025-01-05 08:02:30 +01:00
(wait for fix on 2024.3.1)

Co-authored-by: muppeth <muppeth@disroot.org>
Reviewed-on: #27
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
Co-authored-by: meaz <meaz@disroot.org>
Co-committed-by: meaz <meaz@disroot.org>
Co-authored-by: muppeth <muppeth@disroot.org>
Reviewed-on: #28
Co-authored-by: meaz <meaz@disroot.org>
Co-committed-by: meaz <meaz@disroot.org>
Reviewed-on: #30
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
Co-authored-by: meaz <meaz@disroot.org>
Co-committed-by: meaz <meaz@disroot.org>
Reviewed-on: #32
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
Co-authored-by: meaz <meaz@disroot.org>
Co-committed-by: meaz <meaz@disroot.org>
Co-authored-by: muppeth <muppeth@disroot.org>
Reviewed-on: #34
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
Co-authored-by: meaz <meaz@disroot.org>
Co-committed-by: meaz <meaz@disroot.org>
Co-authored-by: muppeth <muppeth@disroot.org>
Reviewed-on: #36
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
Co-authored-by: meaz <meaz@disroot.org>
Co-committed-by: meaz <meaz@disroot.org>
Reviewed-on: #37
Co-authored-by: muppeth <muppeth@disroot.org>
Co-committed-by: muppeth <muppeth@disroot.org>
It updates to 2024.12.0 and also fix error we have at the moment with customized color.

However, @muppeth is there any reason why you switched from 755 to 744 in previous PR [see here](896043539c (diff-23665706e00635920b03ad21f6de24300dc26b73)) ?

If it is for security reason, we could add something like this:
```
- name: 'Set 755 permissions for directories'
  find:
    paths: '{{ cryptpad_path }}/customize/'
    file_type: directory
    recurse: yes
  register: directories
  tags:
    - 'customize'

- name: 'Apply 755 permissions to directories'
  file:
    path: '{{ item.path }}'
    mode: '0755'
  loop: '{{ directories.files }}'
  tags:
    - 'customize'

- name: 'Set 744 permissions for files'
  find:
    paths: '{{ cryptpad_path }}/customize/'
    file_type: file
    recurse: yes
  register: files
  tags:
    - 'customize'

- name: 'Apply 744 permissions to files'
  file:
    path: '{{ item.path }}'
    mode: '0744'
  loop: '{{ files.files }}'
  tags:
    - 'customize'
```

Reviewed-on: #39
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
Co-authored-by: meaz <meaz@disroot.org>
Co-committed-by: meaz <meaz@disroot.org>
meaz added 1 commit 2025-01-05 08:08:10 +01:00
meaz added 1 commit 2025-01-05 08:12:13 +01:00
meaz changed title from WIP: from staging to main, update to 2024.12.0 to from staging to main, update to 2024.12.0 2025-01-07 21:00:08 +01:00
muppeth approved these changes 2025-01-07 21:04:18 +01:00
meaz merged commit 8dcb692e24 into main 2025-01-07 21:06:13 +01:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Disroot-Ansible/cryptpad#40
No description provided.