2019-08-05 06:43:51 -04:00
|
|
|
# vim: set syntax=yaml ts=2 sw=2 sts=2 et :
|
|
|
|
|
2022-05-15 10:36:33 -04:00
|
|
|
{% if grains['nodename'] != 'dom0' %}
|
|
|
|
|
2019-08-05 06:43:51 -04:00
|
|
|
/rw/config/rc.local:
|
|
|
|
file.append:
|
|
|
|
- text: |
|
|
|
|
systemctl unmask apt-cacher-ng
|
|
|
|
systemctl start apt-cacher-ng
|
|
|
|
/sbin/iptables -I INPUT -p tcp --dport 8082 -j ACCEPT
|
|
|
|
|
|
|
|
/rw/config/qubes-firewall-user-script:
|
|
|
|
file.append:
|
|
|
|
- text: /sbin/iptables -I INPUT -p tcp --dport 8082 -j ACCEPT
|
|
|
|
|
|
|
|
/rw/config/qubes-bind-dirs.d/50_user.conf:
|
|
|
|
file.managed:
|
|
|
|
- source:
|
|
|
|
- salt://cacher/50_user.conf
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- makedirs: True
|
2022-05-15 10:36:33 -04:00
|
|
|
|
|
|
|
{% endif %}
|