mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
24 lines
633 B
YAML
24 lines
633 B
YAML
---
|
|
- hosts: "all"
|
|
sudo: "yes"
|
|
remote_user: "vagrant"
|
|
|
|
tasks:
|
|
- name: "Ensure Trusty backports repos are enabled"
|
|
apt_repository:
|
|
repo: "{{ item }}"
|
|
state: "present"
|
|
with_items:
|
|
- "deb http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse"
|
|
- "deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse"
|
|
|
|
- name: "Install LXD"
|
|
apt:
|
|
state: "present"
|
|
update_cache: "yes"
|
|
name: "{{ item }}"
|
|
default_release: "trusty-backports"
|
|
with_items:
|
|
- lxd
|
|
- lxd-client
|
|
- lxd-tools
|