Fix semantic error in example config.

The user list is meant to be a list, not a literal.

Change-Id: I56fe64660c4a45aacdab7c4b2454d46ce7e80631
This commit is contained in:
Robert Collins 2013-08-28 18:15:52 +12:00
parent 5dcb45e758
commit bd65ae3971

View File

@ -75,7 +75,7 @@ the node specifier). It might look something like this::
# local.pp
class { 'openstack_project::etherpad':
database_password => 'badpassword',
sysadmins => 'user@example.org',
sysadmins => ['user@example.org'],
}
.. note::