Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 769 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 769 Bytes

OSQA Puppet module

This module installs and configures OSQA (http://www.osqa.net/) with Mysql and Apache.

Installing latest unstable osqa module from source

cd /etc/puppet/modules
git clone git://github.com/Derpstack/puppet-module-osqa.git osqa
cd osqa
gem install librarian-puppet
librarian-puppet install --path ../

Usage

Simple Case

clas { 'osqa':
  app_url => 'http://osqa.example.org',
}

More advanced case

class { 'osqa': 
  install_dir => '/home/osqa',
  username    => 'osqa',
  group       => 'osqa',
  db_name     => 'osqa',
  timezone    => 'America/Los_Angeles',
  app_url     => 'http://osqa.example.org',
  db_username => 'osqa',
  db_password => 'changme!',
}