Explorar el Código

Add support for setting user expire

lookup-fix-3
Thomas Juberg hace 10 años
padre
commit
e35045801c
Se han modificado 2 ficheros con 5 adiciones y 1 borrados
  1. +2
    -1
      pillar.example
  2. +3
    -0
      users/init.sls

+ 2
- 1
pillar.example Ver fichero

@@ -9,8 +9,9 @@ users:
password: $6$w.............
home: /custom/buser
createhome: True
expire: 16426
sudouser: True
sudo_rules:
sudo_rules:
- ALL=(root) /usr/bin/find
- ALL=(otheruser) /usr/bin/script.sh
shell: /bin/bash

+ 3
- 0
users/init.sls Ver fichero

@@ -58,6 +58,9 @@
{% if not user.get('createhome', True) %}
- createhome: False
{% endif %}
{% if 'expire' in user -%}
- expire: {{ user['expire'] }}
{% endif -%}
- remove_groups: {{ user.get('remove_groups', 'False') }}
- groups:
- {{ user_group }}

Cargando…
Cancelar
Guardar