paulbsd-salt/states/zsh/users.sls

17 lines
411 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
---
2021-09-25 16:03:39 +02:00
{%- from "zsh/map.jinja" import users with context %}
2020-07-10 00:58:55 +02:00
{%- for user in users %}
{%- if user.enabled %}
zshrc-user-{{ user.name }}:
file.managed:
- name: {{ user.home }}/.zshrc
- source: salt://zsh/zshrc.j2
- user: {{ user.name }}
- group: {{ user.gid }}
- mode: 0644
- template: jinja
- require:
- pkg: zsh-pkg
- user: user-{{ user.name }}
{%- endif %}
{%- endfor %}