# platform = multi_platform_all
# reboot = false
# strategy = configure
# complexity = low
# disruption = low




- name: Test for existence /etc/passwd
  ansible.builtin.stat:
    path: "/etc/passwd"
  register: file_exists

- name: Ensure permission u-xs,g-xws,o-xwt on /etc/passwd
  ansible.builtin.file:
    path: "/etc/passwd"
    mode: "u-xs,g-xws,o-xwt"
  when: file_exists.stat is defined and file_exists.stat.exists


