summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/become_unprivileged/common_remote_group/cleanup.yml
blob: 41784fcc0d8ec61c174ab18f389c81a8f4bcbc81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
- name: Cleanup (as root)
  hosts: ssh
  gather_facts: yes
  remote_user: root
  tasks:
    - name: Remove group for unprivileged users
      group:
        name: commongroup
        state: absent

    - name: Check if /usr/bin/setfacl exists
      stat:
        path: /usr/bin/setfacl
      register: usr_bin_setfacl

    - name: Check if /bin/setfacl exists
      stat:
        path: /bin/setfacl
      register: bin_setfacl

    - name: Set path to setfacl
      set_fact:
        setfacl_path: /usr/bin/setfacl
      when: usr_bin_setfacl.stat.exists

    - name: Set path to setfacl
      set_fact:
        setfacl_path: /bin/setfacl
      when: bin_setfacl.stat.exists

    - name: chmod +x setfacl
      file:
        path: "{{ setfacl_path }}"
        mode: a+x
      when: setfacl_path is defined