12 lines
450 B
YAML
12 lines
450 B
YAML
---
|
|
- name: Prep lxd Playbook
|
|
hosts: lxd_hosts
|
|
become: true
|
|
tasks:
|
|
- name: PREP LXD -- Check if ubuntu minimal repo already added.
|
|
shell: lxc remote list | grep ubuntu-minimal | wc -l
|
|
register: ubuntu_minimal_repo
|
|
- name: PREP LXD -- Add ubuntu minimal repo
|
|
command: lxc remote add --protocol simplestreams ubuntu-minimal https://cloud-images.ubuntu.com/minimal/releases/
|
|
when: ubuntu_minimal_repo.stdout != "1"
|