Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
7628a316
Commit
7628a316
authored
8 years ago
by
Jesse Shapiro
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3398 from open-craft/haikuginger/allow-user-provisioning-failures
Optionally allow user provisioning failures
parents
b92c0b02
102c731b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
playbooks/edx-east/manage_edxapp_users_and_groups.yml
+6
-2
No files found.
playbooks/edx-east/manage_edxapp_users_and_groups.yml
View file @
7628a316
...
@@ -77,10 +77,12 @@
...
@@ -77,10 +77,12 @@
vars
:
vars
:
python_path
:
/edx/bin/python.edxapp
python_path
:
/edx/bin/python.edxapp
manage_path
:
/edx/bin/manage.edxapp
manage_path
:
/edx/bin/manage.edxapp
ignore_user_creation_errors
:
no
deployment_settings
:
"
{{
EDXAPP_SETTINGS
|
default('aws')
}}"
tasks
:
tasks
:
-
name
:
Manage groups
-
name
:
Manage groups
shell
:
>
shell
:
>
{{ python_path }} {{ manage_path }} lms --settings=
aws
{{ python_path }} {{ manage_path }} lms --settings=
{{ deployment_settings }}
manage_group {{ item.name | quote }}
manage_group {{ item.name | quote }}
{% if item.get('permissions', []) | length %}--permissions {{ item.permissions | default([]) | map('quote') | join(' ') }}{% endif %}
{% if item.get('permissions', []) | length %}--permissions {{ item.permissions | default([]) | map('quote') | join(' ') }}{% endif %}
{% if item.get('remove') %}--remove{% endif %}
{% if item.get('remove') %}--remove{% endif %}
...
@@ -88,7 +90,7 @@
...
@@ -88,7 +90,7 @@
-
name
:
Manage users
-
name
:
Manage users
shell
:
>
shell
:
>
{{ python_path }} {{ manage_path }} lms --settings=
aws
{{ python_path }} {{ manage_path }} lms --settings=
{{ deployment_settings }}
manage_user {{ item.username | quote }} {{ item.email | quote }}
manage_user {{ item.username | quote }} {{ item.email | quote }}
{% if item.get('groups', []) | length %}--groups {{ item.groups | default([]) | map('quote') | join(' ') }}{% endif %}
{% if item.get('groups', []) | length %}--groups {{ item.groups | default([]) | map('quote') | join(' ') }}{% endif %}
{% if item.get('remove') %}--remove{% endif %}
{% if item.get('remove') %}--remove{% endif %}
...
@@ -97,3 +99,5 @@
...
@@ -97,3 +99,5 @@
{% if item.get('unusable_password') %}--unusable-password{% endif %}
{% if item.get('unusable_password') %}--unusable-password{% endif %}
{% if item.get('initial_password_hash') %}--initial-password-hash {{ item.initial_password_hash | quote }}{% endif %}
{% if item.get('initial_password_hash') %}--initial-password-hash {{ item.initial_password_hash | quote }}{% endif %}
with_items
:
django_users
with_items
:
django_users
register
:
manage_users_result
failed_when
:
(manage_users_result | failed) and not (ignore_user_creation_errors | bool)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment