Forge Home

piwik

Puppet Piwik Module

9,982 downloads

9,982 latest version

4.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 1.0.1 (latest)
released Aug 25th 2014

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'velaluqa-piwik', '1.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add velaluqa-piwik
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install velaluqa-piwik --version 1.0.1

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

velaluqa/piwik — version 1.0.1 Aug 25th 2014

piwik

A puppet module to easily deploy piwik. Make sure you have a correct php5 installation. This module only downloads the latest piwik archive and extracts it to a given path.

You may have to install php5-fpm (via puppet-php) and configure your web server (maybe with a puppet nginx module).

Suggested Preparation

This module is as simple as possible. You should be able to choose your own php installation. This is my own, which works quite find, as I find:

  1. First I install the nodes/php module.
puppet module install nodes/php
  1. Using this module I install the necessary php packages. For serving php I use php-fpm with nginx.
class { 'php::extension::mysql': }
class { 'php::extension::mcrypt': }
class { 'php::extension::gd': }
class { 'php::fpm::daemon':
  ensure => running
}
  1. Then I install piwik. See [[Usage]].

  2. At last you may set up your vhost. This is depending on the server module you are using. I use my nginx fork

Usage

  class { 'piwik':
    path => "/srv/piwik",
    user => "www-data",
  }

Please note: After the first installation you have to initialize piwik by bootstrapping the database. For this use the setup gui in your browser according to the piwik installation manual.

Plugins

LoginLdap

LoginLdap is a plugin to enable ldap authentication.

Just make sure you have php-ldap installed. Either via a puppet module like nodes/php or via the package resource.

Then use:

  class { 'piwik::plugins::loginldap': }

Contribute

Want to help - send a pull request.