Skip to content

Instantly share code, notes, and snippets.

@sshnaidm
Created May 25, 2019 14:29
Show Gist options
  • Save sshnaidm/cef782d6318aab5c52ce1942726f53ac to your computer and use it in GitHub Desktop.
Save sshnaidm/cef782d6318aab5c52ce1942726f53ac to your computer and use it in GitHub Desktop.
medium
---
- hosts: all
gather_facts: false
tasks:
- name: Install packages
package:
name:
- samba
- httpd
- nano
- ruby
state: "{{ state|default('present') }}"
become: true
- name: Install pip modules
become: true
pip:
name:
- pytest-split-tests
- bottle
- pep8
- flask
state: "{{ state|default('present') }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment