summaryrefslogtreecommitdiff
path: root/examples/user_test.yaml
blob: 77d278eb4b91e0603dd05479866821d1fea06e0d (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
hosts: localhost
parallelism: false
tasks:
  - name: Crear usuario de servicio
    module: users
    args:
      state: create
      username: servicio
      home: /home/servicio
      groups: docker
      shell: /usr/sbin/nologin
      become: true

  - name: Modificar shell de servicio
    module: users
    args:
      state: modify
      username: servicio
      home: /home/servicio
      groups: docker
      shell: /bin/bash
      become: true

  - name: Eliminar usuario de servicio
    module: users
    args:
      state: absent
      username: servicio
      home: /home/servicio
      groups: docker
      shell: /bin/bash
      become: true