Created
February 21, 2016 05:08
-
-
Save yutannihilation/3c6a6b4816802708b20c to your computer and use it in GitHub Desktop.
Ansible playbook to install LXD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: localhost | |
connection: local | |
tasks: | |
- name: add apt repo | |
apt_repository: repo='ppa:ubuntu-lxc/lxd-stable' | |
- name: install lxc and lxd | |
apt: name=lxd state=latest update_cache=yes cache_valid_time=600 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment