Skip to content

Commit b9c576c

Browse files
committed
Merge branch 'v2'
2 parents 04aa088 + 9fcd605 commit b9c576c

26 files changed

+256
-63
lines changed

.build/.appveyor/build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cp dist\user-sync.exe release\
2323
cd release
2424
7z a "user-sync-${env:APPVEYOR_REPO_TAG_NAME}${env:BUILD_EDITION}-win64.zip" user-sync.exe
2525
cd ..
26-
7z a -ttar -r release\examples.tar examples
26+
7z a -ttar release\examples.tar examples
2727
7z a -tgzip release\examples.tar.gz release\examples.tar
28-
7z a -r release\examples.zip examples\
28+
7z a release\examples.zip examples\
2929
dir release

.build/.travis/build-py36-centos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
virtualenv venv -p /usr/bin/python3.6
2+
python3 -m venv venv
33
source venv/bin/activate
44
python -m pip install --upgrade pip
55
pip install external/okta-0.0.3.1-py2.py3-none-any.whl

.build/.travis/install-centos.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env bash
2+
yum update -y
23
yum groupinstall -y "Development Tools"
3-
yum install -y epel-release
4-
yum install -y https://centos7.iuscommunity.org/ius-release.rpm
5-
yum install -y python36u-devel python36u-pip python36u-virtualenv
6-
yum install -y python-devel python-pip python-virtualenv
4+
yum install -y python3 python3-devel
75
yum install -y pkgconfig openssl-devel dbus-glib-devel dbus-python libffi-devel

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Description**
11+
A clear and concise description of the issue.
12+
13+
**Steps to reproduce**
14+
* Relevant config options
15+
* Command-line options used
16+
* Specific details around identity source, group mapping, etc.
17+
18+
**Expected behavior**
19+
A clear and concise description of what you expected to happen.
20+
21+
**Screenshots**
22+
If applicable, add screenshots to help explain your problem.
23+
24+
**Environment**
25+
- UST version:
26+
- OS type and version:
27+
- Any other relevant info:
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
Link to any relevant bugs (e.g. "Relates to bug #xxx")
14+
15+
**Describe the solution you'd like**
16+
A clear and concise description of what you want to happen.
17+
18+
**Describe alternatives you've considered**
19+
A clear and concise description of any alternative solutions or features you've considered.
20+
21+
**Additional context**
22+
Add any other context or screenshots about the feature request here.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: General question
3+
about: Issues that are neither bugs nor feature requests
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+

.github/pull_request_template.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!-- Don't forget to update the PR title to concisely describe the proposed changes -->
2+
3+
## Summary
4+
*
5+
6+
## Testing Steps
7+
*
8+
9+
<!-- Link to all bugs that this PR fixes, one link per line -->
10+
<!-- If there is no related issue, please create one and link it here before submitting the PR -->
11+
12+
Fixes #xxx

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ user_sync/resources/*
105105
!user_sync/resources/__init__.py
106106
!user_sync/resources/README.md
107107
!user_sync/resources/manual_url
108+
!user_sync/resources/shell_scripts
108109
.DS_Store
109110
!user_sync/resources/default_flags.cfg
110111
test_config/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The [User Sync Documentation](https://adobe-apiplatform.github.io/user-sync.py/)
2727

2828
## Installation and Use
2929

30-
The connector is packaged as a self-contained executable. See the [latest release page](https://github.com/adobe-apiplatform/user-sync.py/releases/latest)
30+
The tool is packaged as a self-contained executable. See the [latest release page](https://github.com/adobe-apiplatform/user-sync.py/releases/latest)
3131
to get the latest build for your platform. Releases are distributed as archives (`.zip` or `.tar.gz`). Each release file
3232
contains the UST executable.
3333

docs/en/user-manual/configuring_user_sync_tool.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ editor, and enter these values in the “enterprise” section:
124124
```YAML
125125
enterprise:
126126
org_id: "Organization ID goes here"
127-
api_key: "API key goes here"
127+
client_id: "Client ID goes here"
128128
client_secret: "Client Secret goes here"
129-
tech_acct: "Tech Account ID goes here"
129+
tech_acct_id: "Tech Account ID goes here"
130130
priv_key_path: "Path to Private Certificate goes here"
131131
```
132132
@@ -506,9 +506,9 @@ server:
506506
507507
enterprise:
508508
org_id: "Org ID goes here"
509-
api_key: "API key goes here"
509+
client_id: "Client ID goes here"
510510
client_secret: "Client secret goes here"
511-
tech_acct: "Tech account ID goes here"
511+
tech_acct_id: "Tech account ID goes here"
512512
priv_key_path: "Path to private.key goes here"
513513
# priv_key_data: "actual key data goes here" # This is an alternative to priv_key_path
514514
```

0 commit comments

Comments
 (0)