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