<cruise xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cruise-config.xsd" schemaVersion="74">
<server artifactsdir="artifacts" commandRepositoryLocation="default" serverId=“server-id”>
<security allowOnlyKnownUsersToLogin="true">
<ldap uri=“ldap-uri” searchFilter=“ldap-search”-filter>
<bases>
<base value=“ldap-base” />
</bases>
</ldap>
<roles>
<role name="go-admin">
<users>
<user>user1</user>
<user>user2</user>
</users>
</role>
</roles>
<admins>
<role>go-admin</role>
<user>user1</user>
<user>user2</user>
</admins>
</security>
</server>
</cruise>
--
You received this message because you are subscribed to the Google Groups "go-cd" group.
To unsubscribe from this group and stop receiving emails from it, send an email to go-cd+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
My question has to do with how I can populate the user list through the backend (without using the GUI). For example, is there a config file I can modify to populate the user list? I tried adding users and roles in the cruise-config.xml file, but this didn't work.
<security>
<roles>
<role name="Technical_Architects">
<users>
<user>fred.bloggs</user>
<user>jim.smith</user>
</users>
</role>
</security>