Forge Home

lamp

UNKNOWN

8,303 downloads

8,303 latest version

1.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 Sep 30th 2015

Start using this module

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

Add this module to your Puppetfile:

mod 'naina-lamp', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add naina-lamp
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install naina-lamp --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

naina/lamp — version 0.1.0 Sep 30th 2015

Naina puppet: LAMP

Overview

This module is to automate LAMP configuration on ubuntu-14.04,12.04

Module Description

A handy puppet module for managing LAMP configuration. Before you go ahead with this module, make sure that you have puppet master and agent installed on your host machines and agent contains a certificate signed by the puppet master. All you need to do is to get this module installed either from github or from puppetforge.

Puppet version >=3.4.0 is recommended.

Installation

Puppet

puppet module install naina-lamp

Git Submodule

git submodule add https://github.com/nainajohari/puppet-lamp.git modules/lamp

Usage

Default setup

Create a manifest that has the following code [/etc/puppet/manifests/site.pp] :

Exec {
  path => ["/usr/bin", "/bin", "/usr/sbin", "/sbin", "/usr/local/bin", "/usr/local/sbin"]
}

node default {
             include lamp
             }