diff --git a/pillar.example b/pillar.example index fedcaaf..256303a 100644 --- a/pillar.example +++ b/pillar.example @@ -11,6 +11,7 @@ users: # WARNING: If 'empty_password' is set to True, the 'password' statement # will be ignored by enabling password-less login for the user. empty_password: False + hash_password: False system: False home: /custom/buser homedir_owner: buser diff --git a/users/init.sls b/users/init.sls index 83eabaf..d92b999 100644 --- a/users/init.sls +++ b/users/init.sls @@ -93,6 +93,9 @@ users_{{ name }}_user: {% if 'enforce_password' in user -%} - enforce_password: {{ user['enforce_password'] }} {% endif -%} + {% if 'hash_password' in user -%} + - hash_password: {{ user['hash_password'] }} + {% endif -%} {% if user.get('system', False) -%} - system: True {% endif -%}