Skip to content

Instantly share code, notes, and snippets.

@Mayeu
Last active August 29, 2015 14:19
Show Gist options
  • Save Mayeu/d11768498b64df69ece5 to your computer and use it in GitHub Desktop.
Save Mayeu/d11768498b64df69ece5 to your computer and use it in GitHub Desktop.
Installation de paquet avec ansible
---
- host: localhost
sudo: yes
tasks:
- name: install plein de paquets
apt: package={{ item }} state=present update_cache=yes
with_items:
- paquet1
- paquet2
- ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment