-
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.
--up-docs with no argument now prints a list of modules
- Loading branch information
1 parent
e021eef
commit 4d5994f
Showing
5 changed files
with
30 additions
and
7 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 |
---|---|---|
@@ -1,19 +1,20 @@ | ||
#!/usr/bin/env python3 | ||
|
||
""" | ||
A Python-like declarative IT automation tool. | ||
A Python-syntax declarative IT automation tool. | ||
uPlaybook2 takes ideas from Ansible and Cookiecutter and gives it a | ||
Python syntax rather than YAML. The desired state of the system is | ||
specified via this "playbook" and associated templates and data. You | ||
can then run this playbook, providing additional arguments for this run. | ||
More documentation is available at: https://github.com/linsomniac/uplaybook2 | ||
More documentation is available at: https://github.com/linsomniac/uplaybook | ||
""" | ||
|
||
from . import internals | ||
from . import fs | ||
from . import core | ||
from . import pyinfra | ||
|
||
up_context = internals.up_context | ||
ARGS = up_context.context["ARGS"] |
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