mirror of
https://github.com/unman/shaker.git
synced 2024-10-01 01:25:41 -04:00
38 lines
704 B
YAML
38 lines
704 B
YAML
# vim: set syntax=yaml ts=2 sw=2 sts=2 et :
|
|
#
|
|
#
|
|
#
|
|
|
|
{% if grains['nodename'] != 'dom0' %}
|
|
{% if salt['qvm.exists']('cacher') %}
|
|
|
|
/etc/apt/sources.list:
|
|
file.replace:
|
|
- names:
|
|
- /etc/apt/sources.list
|
|
- /etc/apt/sources.list.d/qubes-r4.list
|
|
- pattern: 'https:'
|
|
- repl: 'http://HTTPS/'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
{% endif %}
|
|
|
|
mullvad:
|
|
pkg.uptodate:
|
|
- refresh: True
|
|
|
|
installed:
|
|
pkg.installed:
|
|
- pkgs:
|
|
- qubes-core-agent-networking
|
|
- qubes-core-agent-passwordless-root
|
|
- iproute2
|
|
- libnotify-bin
|
|
- mate-notification-daemon
|
|
- resolvconf
|
|
- unzip
|
|
- wireguard
|
|
- wireguard-tools
|
|
- zenity
|
|
|
|
{% endif %}
|