summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/become_unprivileged/cleanup_unpriv_users.yml
blob: 8be2fe60fc96607142d3a33aeabfdabe598e4fd2 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
- name: Clean up host and remove unprivileged users
  hosts: ssh
  gather_facts: yes
  remote_user: root
  tasks:
    # Do this first so we can use tilde notation while the user still exists
    - name: Delete homedirs
      file:
        path: '~{{ item }}'
        state: absent
      with_items:
        - unpriv1
        - unpriv2

    - name: Delete users
      user:
        name: "{{ item }}"
        state: absent
        force: yes  # I think this is needed in case pipelining is used and the session remains open
      with_items:
        - unpriv1
        - unpriv2

    - name: Delete groups
      group:
        name: "{{ item }}"
        state: absent
      with_items:
        - acommongroup
        - unpriv1
        - unpriv2

    - name: Fix sudoers.d path for FreeBSD
      set_fact:
        sudoers_etc: /usr/local/etc
      when: ansible_distribution == 'FreeBSD'

    - name: Fix sudoers.d path for everything else
      set_fact:
        sudoers_etc: /etc
      when: ansible_distribution != 'FreeBSD'

    - name: Undo OpenSUSE
      lineinfile:
        path: "{{ sudoers_etc }}/sudoers"
        regexp: '^### Defaults targetpw'
        line: 'Defaults targetpw'
        backrefs: yes

    - name: Nuke custom sudoers file
      file:
        path: "{{ sudoers_etc }}/sudoers.d/unpriv1"
        state: absent