Last active
January 6, 2019 14:13
-
-
Save shudarshon/598084ff1aa987a1d303ce19ca5e637a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- 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