Vai al file
Markus Opolka 99dfa449b4 Merge branch 'fix_url' 2016-12-07 09:44:38 +01:00
data Fix LimeSurvey tarball URL 2016-12-07 09:30:55 +01:00
manifests Fix LimeSurvey tarball URL 2016-12-07 09:30:55 +01:00
spec Add default variable assignment for optional Variables 2016-09-13 14:03:06 +02:00
.fixtures.yml Change download URL to GitHub so it won't change all the time 2016-09-21 14:45:23 +02:00
.gitignore Initial Commit 2016-09-08 12:59:56 +02:00
.travis.yml Fixing Travis CI Build 2016-09-08 13:38:50 +02:00
CONTRIBUTING.md Update README and CONTRIBUTING 2016-09-08 13:39:17 +02:00
Gemfile Set fixed beaker Gem 2016-12-07 09:35:27 +01:00
LICENSE Initial Commit 2016-09-08 12:59:56 +02:00
README.md Add Travis build status to README 2016-09-08 13:40:56 +02:00
Rakefile Fixing Travis CI Build 2016-09-08 13:38:50 +02:00
hiera.yaml Initial Commit 2016-09-08 12:59:56 +02:00
metadata.json Update version 2016-12-07 09:44:24 +01:00

README.md

Build Status

limesurvey

Table of Contents

  1. Description
  2. Setup - The basics of getting started with limesurvey
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Description

This module installs Limesurvey from the limesurvey.org website..

Optionally MySQL and Apache2 are installed and managed by this module. However, both classes can be overwritten.

Setup

Beginning with limesurvey

Basically this module downloads the code from limesurey.org and places it into the specified directory. Without the database class included you need to install and manage the database by yourself. Same for the websever and PHP.

Usage

A basic example using both webserver and database

        class { 'limesurvey':
            dbname            => 'limesurvey',
            dbpassword        => 'foobar',
            dbuser            => 'lemongrab',
            sql_root_password => 'foobar',
            manage_webserver  => false,
        }

Reference

Classes

Public classes

  • [limesurey::init]: Installs and configures Limesurvey.
  • [limesurey::extract]: Downloads the code from limesurey.org
  • [limesurey::config]: Manages the configuration of Limesurvey.
  • [limesurey::database]: Installs and configures a MySQL database.
  • [limesurey::webserver]: Installs and configures an Apacha2 webserver.
  • [limesurey::php]: Installs the required PHP packages.

For details on parameters see manifests

Limitations

This module has been tested on:

  • Debian 7, 8

Using Puppet >=4.5

The CentOS Build needs fixing, but the module should work.

Development

For further details see CONTRIBUTING.md

Authors

  • Markus Opolka