mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-23 04:13:20 +02:00
18 lines
467 B
YAML
18 lines
467 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
|