expanded packages state
This commit is contained in:
parent
e8c854c692
commit
2c0a0ca638
@ -1,2 +1,2 @@
|
|||||||
packages:
|
packages:
|
||||||
weechat:
|
weechat: { status: installed }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
packages:
|
packages:
|
||||||
teams:
|
teams: { status: installed }
|
||||||
rocketchat:
|
rocketchat: { status: installed }
|
||||||
|
|
||||||
repositories:
|
repositories:
|
||||||
msteams:
|
msteams:
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
packages:
|
packages:
|
||||||
vim:
|
vim: { status: installed }
|
||||||
git:
|
git: { status: installed }
|
||||||
curl:
|
curl: { status: installed }
|
||||||
htop:
|
tmux: { status: installed }
|
||||||
terminator:
|
htop: { status: installed }
|
||||||
borgbackup:
|
terminator: { status: installed }
|
||||||
go:
|
borgbackup: { status: installed }
|
||||||
nextcloud-client:
|
go: { status: installed }
|
||||||
keepassxc:
|
nextcloud-client: { status: installed }
|
||||||
|
keepassxc: { status: installed }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{% for pkg in salt['pillar.get']('packages', []) %}
|
{% for package, args in pillar['packages'].items() %}
|
||||||
Install {{ pkg }}:
|
{% if args['status'] != 'ignore' %}
|
||||||
pkg.installed:
|
{{ package }}:
|
||||||
- name: {{ pkg }}
|
pkg.{{ args['status'] }}
|
||||||
- refresh: false
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user