mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-25 06:53:00 +02:00
14 lines
447 B
YAML
14 lines
447 B
YAML
---
|
|
|
|
- name: Configure apt to use the Xenial release by default
|
|
template: src=01_xenial_aptconf.j2 dest=/etc/apt/apt.conf.d/01xenial
|
|
|
|
- name: Configure packages preferences
|
|
template: src=01_strongswan.pref.j2 dest=/etc/apt/preferences.d/01_strongswan.pref
|
|
|
|
- name: Configure the Ubuntu Zesty repository
|
|
apt_repository:
|
|
repo: deb http://mirrors.kernel.org/ubuntu/ zesty main
|
|
state: present
|
|
filename: 'zesty'
|
|
update_cache: yes
|