I have created the system user using yaml config but not reflected in admin console. | Community
Skip to main content
Level 2
January 11, 2022
Solved

I have created the system user using yaml config but not reflected in admin console.

  • January 11, 2022
  • 1 reply
  • 776 views

I have created the system user using yaml config as bellow.

 

After this /system/console/actool configuration only i am able to see the user in admin console but i think it should be reflected automatically after build.

But after build user not getting reflected.

 

Does anyone know how to create AC Tool configuration in code level?? or any mapping is required??.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by ibishika

I have used the .config extension in the config file and got the below syntax working:

scripts=[

               "create service user <username>

                set ACL on <path> allow jcr:read,jcr:write for <username>

               end

               "

                ] 

 

Replace path and username with the required value.

1 reply

ibishika
ibishikaAccepted solution
Level 4
January 13, 2022

I have used the .config extension in the config file and got the below syntax working:

scripts=[

               "create service user <username>

                set ACL on <path> allow jcr:read,jcr:write for <username>

               end

               "

                ] 

 

Replace path and username with the required value.