Skip to content

Commit

Permalink
Update install.sls
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaunMaher authored Jul 20, 2020
1 parent 092baff commit 574775e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions etcd/install.sls
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@ include:

{%- if etcd.manage_users %}
etcd-user-group-home:
group.present:
- name: {{ etcd.group or 'etcd' }}
- system: True
- require_in:
- user: etcd-user-group-home
user.present:
- name: {{ etcd.user or 'etcd' }}
- gid: {{ etcd.group or 'etcd' }}
- home: {{ etcd.prefix }}
- require:
- group: etcd-user-group-home
- require_in:
- file: etcd-user-envfile
- file: etcd-extract-dirs
Expand All @@ -36,6 +43,7 @@ etcd-extract-dirs:
- group
- require:
- user: etcd-user-group-home
- group: etcd-user-group-home
- require_in:
- file: etcd-user-envfile

Expand Down

0 comments on commit 574775e

Please sign in to comment.