Skip to content

Commit

Permalink
fix(bug): jinja template variable use, resolves teamdfir/sift#521
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Apr 21, 2021
1 parent 641f6fc commit fef4363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sift/config/user/user.sls
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{%- if user == "root" -%}
{%- set home = "/root" -%}
{%- else -%}
{%- set home = "/home/{{ user }}" -%}
{%- set home = "/home/" + user -%}
{%- endif -%}
{%- if user in all_users -%}
sift-user-{{ user }}:
Expand Down

0 comments on commit fef4363

Please sign in to comment.