Overview
This article will provide two options for removing inherited Environments from a Group.
Via the Django Database Browser
Navigate to the Django Database Browser located in Admin → Support Tools → Django Database Browser
Once in the Django Database Browser, go to Accounts → Groups
Once in Groups, select the Group to remove the inherited Environments from (this may take a moment to load)
On the page for the specific Group, deselect the Inherited Environments to be removed then select save
Via shell_plus
ssh to your CloudBolt instance
Run the following command to open shell_plus:
/opt/cloudbolt/manage.py shell_plus
Once in shell_plus:
#grab the Group to remove the inherited Environments, replace 00 with id of your Group group = Group.objects.get(id=00) #grab the Environment that is inherited in the group, replace 00 with id of your Environment env = Environment.objects.get(id=00) group.inherited_environments.remove(env)
Step 2 Heading
Sub-step 1
Sub-step 2
Step 3 Heading
Sub-step 1
Sub-step 2
Additional information
Include links to outside source articles or reference material if applicable
0 Comments