Merge pull request #19 from MoHD20/master

assure that the specified user is present
This commit is contained in:
N 2019-02-18 20:47:27 +00:00 committed by GitHub
commit d729a1509b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,14 @@
{% from 'memcached/map.jinja' import memcached with context %}
{% from 'memcached/macros.sls' import get_config_item with context -%}
include:
- memcached
memcached_user:
user.present:
- name : {{ get_config_item('user') }}
- createhome: False
- shell: /sbin/nologin
{{ memcached.config_file }}:
file:
@ -21,3 +28,6 @@ include:
{% endif %}
- watch_in:
- service: memcached
- require:
- user: memcached_user