This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from RunbookSolutions/testing
General Improvements Allow plugin to require the API by auto-injecting it into plugins that require it. Added the config option to force_redownload plugins even if they already exist locally. Good for testing. Added the ability for tasks to be removed from the schedule.
- Loading branch information
Showing
7 changed files
with
78 additions
and
14 deletions.
There are no files selected for viewing
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,4 @@ | ||
__pycache__ | ||
*.pyc | ||
*.pyo | ||
*.pyd |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
[agent] | ||
# Note: Do NOT include a trailing slash on the server_url | ||
server_url=http://192.168.1.197 | ||
server_url=https://graphql.dev.runbook.solutions | ||
# Device Code Grant client_id provided by the server | ||
client_id=9ab55261-bfb7-4bb3-ad29-a6dbdbf8a5af | ||
client_id=9ac5c7f4-0dbe-4e7e-a16a-06c1027771b3 | ||
# If we are required to preform Device Code Authentication | ||
auth=True | ||
auth=True | ||
# If we are forcing the re-downloading of plugins | ||
force_redownload=False |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
requests | ||
cryptography | ||
colorlog | ||
croniter | ||
croniter | ||
python-nmap | ||
pyinstaller | ||
pytest |
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