scottslowe-learning-tools/lxc/provision.yml
Scott Lowe bec01edcb0 Commit initial version of LXC environment
Add Vagrant environment and supporting files for a simple LXC
environment. Environment includes YAML file for machines, Ansible
playbook, Ansible inventory file (generated automatically),
Ansible configuration file, Vagrantfile, and README.md.
2016-01-08 15:19:24 -07:00

15 lines
239 B
YAML

---
- hosts: "all"
sudo: "yes"
remote_user: "vagrant"
tasks:
- name: "Install LXC"
apt:
state: "present"
update_cache: "yes"
name: "{{ item }}"
with_items:
- lxc
- lxc-templates
- lxctl