dotfiles/tasks/security.yml

29 lines
589 B
YAML
Raw Normal View History

2019-03-14 21:34:29 +00:00
- name: "Install security-related packages"
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: "item not in installed_packages.stdout_lines"
with_items:
- 'qomui'
- 'wireguard-arch'
- 'wireguard-tools'
2019-05-25 00:21:47 +01:00
- 'opensnitch-git'
2019-03-14 21:34:29 +00:00
- copy:
src: ./files/assh.yml
2019-05-25 00:21:47 +01:00
dest: "{{ home }}/.ssh/assh.yml"
mode: 0644
owner: "{{ user }}"
- copy:
src: ./files/opensnitch.json
dest: "{{ home }}/.opensnitch/ui-config.json"
2019-03-14 21:34:29 +00:00
mode: 0644
owner: "{{ user }}"
2019-05-25 10:15:53 +01:00
- service:
name: "opensnitchd"
enabled: true