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
7d98ac7b
Commit
7d98ac7b
authored
Jun 21, 2016
by
Kyle Crawshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added changes to playbook to reflect unsuable_password option in the management command
Passing the correct flag for unusable_password
parent
12d91d7c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
playbooks/edx-east/manage_edxapp_users_and_groups.yml
+9
-0
No files found.
playbooks/edx-east/manage_edxapp_users_and_groups.yml
View file @
7d98ac7b
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
# - superuser (optional, bool)
# - superuser (optional, bool)
# - staff (optional, bool)
# - staff (optional, bool)
# - remove (optional, bool): ensures the user does not exist
# - remove (optional, bool): ensures the user does not exist
# - unusable_password (optional, bool): ensures the password is unusable
#
#
# Groups can have the following properties:
# Groups can have the following properties:
# - name (required, str)
# - name (required, str)
...
@@ -42,6 +43,13 @@
...
@@ -42,6 +43,13 @@
# email: smitty@werbenmanjens.en
# email: smitty@werbenmanjens.en
# groups: [group1]
# groups: [group1]
#
#
# - username: frank
# email: frank@bigcorp.com
# staff: false
# superuser: false
# unusable_password: true
# groups: []
#
# groups:
# groups:
# - name: group3
# - name: group3
# remove: true
# remove: true
...
@@ -82,4 +90,5 @@
...
@@ -82,4 +90,5 @@
{% if item.get('remove') %}--remove{% endif %}
{% if item.get('remove') %}--remove{% endif %}
{% if item.get('superuser') %}--superuser{% endif %}
{% if item.get('superuser') %}--superuser{% endif %}
{% if item.get('staff') %}--staff{% endif %}
{% if item.get('staff') %}--staff{% endif %}
{% if item.get('unusable_password') %}--unusable-password{% endif %}
with_items
:
django_users
with_items
:
django_users
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