Explorar el Código

Fix default behavior of copying /etc/skel when creating home directory

Since https://github.com/saltstack-formulas/users-formula/pull/182 the
home directory was created by salt which prevent "adduser" behavior to
copy /etc/skel in newly created directory.

Ensure the parent directory of the home dir is existing instead.
master
Philippe Pepiot hace 6 años
padre
commit
944e904419
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      users/init.sls

+ 1
- 1
users/init.sls Ver fichero

@@ -64,7 +64,7 @@ users_{{ name }}_{{ group }}_group:
{% if user.get('createhome', True) %}
users_{{ name }}_user_prereq:
file.directory:
- name: {{ home }}
- name: {{ salt['file.dirname'](home) }}
- makedirs: True
- prereq:
- user: users_{{ name }}_user

Cargando…
Cancelar
Guardar