Fix variable access warnings
Change-Id: I53392a930d5d71fadf36388e09b6d8b355865c3f Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
7f24b5ee7c
commit
fb1bd34b87
@ -5,7 +5,7 @@
|
||||
*/
|
||||
{
|
||||
// Name your instance!
|
||||
"title": "<%= etherpad_title %>",
|
||||
"title": "<%= @etherpad_title %>",
|
||||
|
||||
//Ip and port which etherpad should bind at
|
||||
"ip": "127.0.0.1",
|
||||
@ -16,17 +16,17 @@
|
||||
|
||||
// Session Key, used for reconnecting user sessions
|
||||
// Set this to a secure string at least 10 characters long. Do not share this value.
|
||||
"sessionKey" : "<%= sessionKey %>",
|
||||
"sessionKey" : "<%= @sessionKey %>",
|
||||
|
||||
//The Type of the database. You can choose between dirty, sqlite and mysql
|
||||
//You should use mysql or sqlite for anything else than testing or development
|
||||
"dbType" : "<%= dbType %>",
|
||||
"dbType" : "<%= @dbType %>",
|
||||
//the database specific settings
|
||||
"dbSettings" : {
|
||||
"user" : "<%= database_user %>",
|
||||
"host" : "<%= database_host %>",
|
||||
"password": "<%= database_password %>",
|
||||
"database": "<%= database_name %>"
|
||||
"user" : "<%= @database_user %>",
|
||||
"host" : "<%= @database_host %>",
|
||||
"password": "<%= @database_password %>",
|
||||
"database": "<%= @database_name %>"
|
||||
},
|
||||
//the default text of a pad
|
||||
"defaultPadText" : "Welcome to Etherpad Lite!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nEtherpad Lite on Github: http:\/\/j.mp/ep-lite\n",
|
||||
|
@ -3,9 +3,9 @@ description "etherpad-lite"
|
||||
start on started networking
|
||||
stop on runlevel [!2345]
|
||||
|
||||
env EPHOME=<%= base_install_dir %>/etherpad-lite
|
||||
env EPLOGS=<%= base_log_dir %>/<%= ep_user %>
|
||||
env EPUSER=<%= ep_user %>
|
||||
env EPHOME=<%= @base_install_dir %>/etherpad-lite
|
||||
env EPLOGS=<%= @base_log_dir %>/<%= @ep_user %>
|
||||
env EPUSER=<%= @ep_user %>
|
||||
|
||||
respawn
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user