Allow for etherpad title to be parameterized

The general etherpad_lite module should not contain OpenStack as
a hardcoded title. Parameterize it.

Change-Id: I473720d9566233ab4c8d2081c9835b42ddfcb94e
This commit is contained in:
Monty Taylor 2014-02-10 14:50:15 -08:00
parent 3f3cfa02e0
commit 012ad84af6
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
# #
class etherpad_lite::site ( class etherpad_lite::site (
$database_password, $database_password,
$etherpad_title,
$sessionKey = '', $sessionKey = '',
$dbType = 'mysql', $dbType = 'mysql',
$database_user = 'eplite', $database_user = 'eplite',

View File

@ -5,7 +5,7 @@
*/ */
{ {
// Name your instance! // Name your instance!
"title": "OpenStack Etherpad", "title": "<%= etherpad_title %>",
//Ip and port which etherpad should bind at //Ip and port which etherpad should bind at
"ip": "127.0.0.1", "ip": "127.0.0.1",