-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Doc changes in accordance with changes to PR#57 as well as comments in this PR. -Mostly wording and naming changes, and removal of clear_running_userid Signed-off-by: Elijah Swift <elijah.swift@ibm.com>
- Loading branch information
1 parent
80b4878
commit 26053bc
Showing
7 changed files
with
65 additions
and
88 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
layout: default | ||
parent: Common | ||
--- | ||
|
||
# Setup Precheck | ||
|
||
How to set up and check IRRSMO00 precheck configuration. | ||
{: .fs-6 .fw-300 } | ||
|
||
| ||
|
||
In order to use `set` or `alter` functions in pyRACF, users must have `READ` authority to the `IRR.IRRSMO00.PRECHECK` resource as outlined in [our dependencies note](../../index). | ||
|
||
| ||
|
||
A function called `setup_precheck` is included with pyRACF to help streamline this process. You can use this function to verify your level of access, or define the `IRR.IRRSMO00.PRECHECK` profile with no universal access.` | ||
|
||
## Example | ||
|
||
###### Python Script | ||
```python | ||
from pyracf import setup_precheck | ||
|
||
setup_precheck() | ||
``` | ||
|
||
###### Console Output | ||
``` | ||
'IRR.IRRSMO00.PRECHECK' is already defined, and you already have 'ALTER' access! | ||
You are ready to start using pyRACF! | ||
Please ensure other users of pyRACF also have at least 'READ' access. | ||
Review our documentation at https://ambitus.github.io/pyracf/ as well! | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters