From 0bcb21f90fa7de4248e632263af26c45d0574c6a Mon Sep 17 00:00:00 2001 From: AzherKhan Date: Tue, 27 Oct 2015 23:26:49 +0530 Subject: [PATCH] Update the sample puppet code block for etherpad Updating the sample puppet code block for etherpad on System Administration Wiki as it was referring to an old etherpad puppet code. Change-Id: Ibd2d2ee1febf909d5851b829a4a9c5f2d620a20f --- doc/source/sysadmin.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/source/sysadmin.rst b/doc/source/sysadmin.rst index 0b6511223a..dbdca011c4 100644 --- a/doc/source/sysadmin.rst +++ b/doc/source/sysadmin.rst @@ -74,8 +74,12 @@ the node specifier). It might look something like this:: # local.pp class { 'openstack_project::etherpad': - database_password => 'badpassword', - sysadmins => ['user@example.org'], + ssl_cert_file_contents => hiera('etherpad_ssl_cert_file_contents'), + ssl_key_file_contents => hiera('etherpad_ssl_key_file_contents'), + ssl_chain_file_contents => hiera('etherpad_ssl_chain_file_contents'), + mysql_host => hiera('etherpad_db_host', 'localhost'), + mysql_user => hiera('etherpad_db_user', 'username'), + mysql_password => hiera('etherpad_db_password'), } .. note::