Hi,
I’m currently fine-tuning my Ansible playbook for installing my Rocky Linux desktop. K3B needs a few special permissions (as discussed in a recent thread), so I thought I might add these to the playbook. Here’s what I should have:
- name: Fix permissions for cdrdao
ansible.builtin.file:
path: /usr/bin/cdrdao
owner: root
group: cdrom
mode: 4710
- name: Fix permissions for wodim
ansible.builtin.file:
path: /usr/bin/wodim
owner: root
group: cdrom
mode: 4710
And here’s the unexpected weird end result of running this:
# ls -l /usr/bin/{cdrdao,wodim}
---xr--rwT. 1 root cdrom 624056 Jun 29 2022 /usr/bin/cdrdao
---xr--rwT. 1 root cdrom 373640 Jan 19 2022 /usr/bin/wodim
Can’t Ansible handle the somewhat special 4710 permissions ?
I’m puzzled.