Skip to content

Instantly share code, notes, and snippets.

@e30chris
Created April 2, 2014 07:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save e30chris/9929303 to your computer and use it in GitHub Desktop.
Save e30chris/9929303 to your computer and use it in GitHub Desktop.
Install GoAccess with Ansible
---
- hosts: all
gather_facts: false
sudo: yes
tasks:
#Update apt cache and install goacces
- name: Update apt cache
apt: update_cache=yes cache_valid_time=3600
- name: Install goaccess
apt: pkg=goaccess
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment