Skip to content

Instantly share code, notes, and snippets.

@kimausloos
Last active October 23, 2017 20:10
Show Gist options
  • Select an option

  • Save kimausloos/f50d0d8855bb35ec68e191a978581a5c to your computer and use it in GitHub Desktop.

Select an option

Save kimausloos/f50d0d8855bb35ec68e191a978581a5c to your computer and use it in GitHub Desktop.
playbook cloud init
---
- name: Initial kickstart
hosts: localhost
gather_facts: no
tasks:
- name: Install Nginx
apt: pkg=nginx state=installed update_cache=true
notify:
- Start Nginx
- name: Remove kickstart cronjob
file: path=/etc/cron.d/kickstart state=absent
handlers:
- name: Start Nginx
service: name=nginx state=started
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment