Skip to content

Instantly share code, notes, and snippets.

@malanjp
Created March 12, 2014 13:42
Show Gist options
  • Save malanjp/9507160 to your computer and use it in GitHub Desktop.
Save malanjp/9507160 to your computer and use it in GitHub Desktop.
- hosts: 192.168.100.10
user: malan
sudo: yes
tasks:
- name: install common applications
action: apt pkg={{ item }} state=installed update-cache=yes
tags: common
with_items:
- git
- mosh
- tmux
- zsh
- mysql-server
- mysql-client
- name: enable mysql service
service: name=mysql state=started enabled=yes
@malanjp
Copy link
Author

malanjp commented Mar 12, 2014

ansible

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment