Skip to content

Instantly share code, notes, and snippets.

@shudarshon
Last active January 6, 2019 14:13
Show Gist options
  • Save shudarshon/598084ff1aa987a1d303ce19ca5e637a to your computer and use it in GitHub Desktop.
Save shudarshon/598084ff1aa987a1d303ce19ca5e637a to your computer and use it in GitHub Desktop.
---
- hosts: all
become: yes
become_method: sudo
tasks:
- name: update package manager
package:
update_cache: yes
- name: "install single package htop"
package:
name: htop
state: present
- name: install multiple software packages
package:
name: "{{ item }}"
state: latest
with_items:
- python-setuptools
- python-dev
- make
- automake
- gcc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment