added GoBulletTrain
This commit is contained in:
18
salt/states/gbt.sls
Normal file
18
salt/states/gbt.sls
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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['user']['username']).home }}/go
|
||||
- user: {{ pillar['user']['username'] }}
|
||||
- group: users
|
||||
- mode: "0755"
|
||||
|
||||
{% if not salt['file.directory_exists']('{}/go/src/github.com/jtyr/gbt'.format(salt['user.info']( pillar['user']['username']).home)) %}
|
||||
Go get GBT:
|
||||
cmd.run:
|
||||
- name: go get github.com/jtyr/gbt/cmd/gbt
|
||||
- runas: {{ pillar['user']['username'] }}
|
||||
- env:
|
||||
- GOPATH: {{ salt['user.info']( pillar['user']['username']).home }}/go
|
||||
{% endif %}
|
@@ -2,3 +2,4 @@ base:
|
||||
'*':
|
||||
- repositories
|
||||
- packages
|
||||
- gbt
|
||||
|
Reference in New Issue
Block a user