dotfiles/salt/states/gbt.sls

19 lines
626 B
Plaintext
Raw Normal View History

2020-05-11 07:55:35 +00:00
# Install GoBulleTrain,
# Highly configurable prompt builder for Bash, ZSH and PowerShell written in Go.
Make sure go directory exists:
file.directory:
- name: {{ salt['user.info']( pillar['username']).home }}/go
- user: {{ pillar['username'] }}
2020-05-11 07:55:35 +00:00
- group: users
- mode: "0755"
2020-08-02 07:14:28 +00:00
{% if not salt['file.directory_exists']('{}/go/src/github.com/jtyr/gbt'.format(salt['user.info']( pillar['username'] ).home )) %}
2020-05-11 07:55:35 +00:00
Go get GBT:
cmd.run:
- name: go get github.com/jtyr/gbt/cmd/gbt
- runas: {{ pillar['username'] }}
2020-05-11 07:55:35 +00:00
- env:
- GOPATH: {{ salt['user.info']( pillar['username']).home }}/go
2020-05-11 07:55:35 +00:00
{% endif %}