Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
374 B

---
- hosts: vm_hosts
tasks:
- name: install lxc related packages
apt: name={{ item }} state=latest
with_items:
- lxc
- lxc-dev
- python
- python-dev
- python-pip
- name: install lxc python support
pip: name=lxc-python2 state=latest
- name: install utilities
apt: name=vim state=latest