Go to file
Markus Opolka 2e1c0e7547 Initial Commit 2016-09-08 12:59:56 +02:00
data
manifests
spec
.fixtures.yml
.gitignore
.travis.yml
CONTRIBUTING.md
Gemfile
LICENSE
README.md
Rakefile
hiera.yaml
metadata.json

README.md

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.

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.

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

The CentOS Build needs fixing but the module should work.

Development

For further details see CONTRIBUTING.md

Authors

  • Markus Opolka