Forge Home

phppgadmin

Puppet PhpPgAdmin Module

10,290 downloads

10,290 latest version

3.5 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.

Version information

  • 0.1.0 (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-phppgadmin', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install velaluqa-phppgadmin --version 0.1.0

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/phppgadmin — version 0.1.0 Aug 25th 2014

Build Status

Puppet-phppgadmin

A puppet module to easily deploy phppgadmin. Make sure you have a correct php5 installation. This module only clones the latest phppgadmin repository state and creates the correct configuration file.

You may have to install php5-fpm (via puppet-php) and configure your web server (e.g. puppet-nginx)

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::pgsql': }
class { 'php::extension::mcrypt': }
class { 'php::fpm::daemon':
  ensure => running
}
  1. Then I install phppgadmin. See [[Usage]].

  2. At last you may set up your vhost. This is depending on the server module you are using.

Usage

  class { 'phppgadmin':
    path => "/srv/phppgadmin",
    user => "www-data",
    servers => [
      {
        desc => "local",
        host => "127.0.0.1",
      },
      {
        desc => "other",
        host => "192.168.1.30",
      }
    ]
  }

Contribute

Want to help - send a pull request.