2017-01-20 05:11:53 +01:00
|
|
|
OS := $(shell uname -s)
|
2017-01-18 03:55:03 +01:00
|
|
|
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"):
|
2017-03-23 06:13:23 +01:00
|
|
|
FORMATTER=../bin/plugin_formatter.py
|
2017-07-14 15:24:45 +02:00
|
|
|
TESTING_FORMATTER=../bin/testing_formatter.sh
|
2017-03-23 06:13:23 +01:00
|
|
|
DUMPER=../bin/dump_keywords.py
|
2017-08-31 16:11:05 +02:00
|
|
|
CONFIG_DUMPER=../bin/dump_config.py
|
2017-09-07 21:44:20 +02:00
|
|
|
GENERATE_CLI=../bin/generate_man.py
|
2017-01-20 04:50:29 +01:00
|
|
|
ifeq ($(shell echo $(OS) | egrep -ic 'Darwin|FreeBSD|OpenBSD|DragonFly'),1)
|
2017-01-20 05:09:55 +01:00
|
|
|
CPUS ?= $(shell sysctl hw.ncpu|awk '{print $$2}')
|
2017-01-13 20:38:02 +01:00
|
|
|
else
|
2017-01-20 05:09:55 +01:00
|
|
|
CPUS ?= $(shell nproc)
|
2017-01-13 20:38:02 +01:00
|
|
|
endif
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2018-03-01 01:01:18 +01:00
|
|
|
# Sets the build output directory if it's not already specified
|
|
|
|
ifndef BUILDDIR
|
|
|
|
BUILDDIR = _build
|
|
|
|
endif
|
|
|
|
|
2017-09-19 17:14:27 +02:00
|
|
|
MODULE_ARGS=
|
|
|
|
ifdef MODULES
|
|
|
|
MODULE_ARGS = -l $(MODULES)
|
|
|
|
endif
|
|
|
|
|
|
|
|
PLUGIN_ARGS=
|
|
|
|
ifdef PLUGINS
|
|
|
|
PLUGIN_ARGS = -l $(PLUGINS)
|
|
|
|
endif
|
|
|
|
|
Become plugins (#50991)
* [WIP] become plugins
Move from hardcoded method to plugins for ease of use, expansion and overrides
- load into connection as it is going to be the main consumer
- play_context will also use to keep backwards compat API
- ensure shell is used to construct commands when needed
- migrate settings remove from base config in favor of plugin specific configs
- cleanup ansible-doc
- add become plugin docs
- remove deprecated sudo/su code and keywords
- adjust become options for cli
- set plugin options from context
- ensure config defs are avaialbe before instance
- refactored getting the shell plugin, fixed tests
- changed into regex as they were string matching, which does not work with random string generation
- explicitly set flags for play context tests
- moved plugin loading up front
- now loads for basedir also
- allow pyc/o for non m modules
- fixes to tests and some plugins
- migrate to play objects fro play_context
- simiplify gathering
- added utf8 headers
- moved option setting
- add fail msg to dzdo
- use tuple for multiple options on fail/missing
- fix relative plugin paths
- shift from play context to play
- all tasks already inherit this from play directly
- remove obsolete 'set play'
- correct environment handling
- add wrap_exe option to pfexec
- fix runas to noop
- fixed setting play context
- added password configs
- removed required false
- remove from doc building till they are ready
future development:
- deal with 'enable' and 'runas' which are not 'command wrappers' but 'state flags' and currently hardcoded in diff subsystems
* cleanup
remove callers to removed func
removed --sudo cli doc refs
remove runas become_exe
ensure keyerorr on plugin
also fix backwards compat, missing method is attributeerror, not ansible error
get remote_user consistently
ignore missing system_tmpdirs on plugin load
correct config precedence
add deprecation
fix networking imports
backwards compat for plugins using BECOME_METHODS
* Port become_plugins to context.CLIARGS
This is a work in progress:
* Stop passing options around everywhere as we can use context.CLIARGS
instead
* Refactor make_become_commands as asked for by alikins
* Typo in comment fix
* Stop loading values from the cli in more than one place
Both play and play_context were saving default values from the cli
arguments directly. This changes things so that the default values are
loaded into the play and then play_context takes them from there.
* Rename BECOME_PLUGIN_PATH to DEFAULT_BECOME_PLUGIN_PATH
As alikins said, all other plugin paths are named
DEFAULT_plugintype_PLUGIN_PATH. If we're going to rename these, that
should be done all at one time rather than piecemeal.
* One to throw away
This is a set of hacks to get setting FieldAttribute defaults to command
line args to work. It's not fully done yet.
After talking it over with sivel and jimi-c this should be done by
fixing FieldAttributeBase and _get_parent_attribute() calls to do the
right thing when there is a non-None default.
What we want to be able to do ideally is something like this:
class Base(FieldAttributeBase):
_check_mode = FieldAttribute([..] default=lambda: context.CLIARGS['check'])
class Play(Base):
# lambda so that we have a chance to parse the command line args
# before we get here. In the future we might be able to restructure
# this so that the cli parsing code runs before these classes are
# defined.
class Task(Base):
pass
And still have a playbook like this function:
---
- hosts:
tasks:
- command: whoami
check_mode: True
(The check_mode test that is added as a separate commit in this PR will
let you test variations on this case).
There's a few separate reasons that the code doesn't let us do this or
a non-ugly workaround for this as written right now. The fix that
jimi-c, sivel, and I talked about may let us do this or it may still
require a workaround (but less ugly) (having one class that has the
FieldAttributes with default values and one class that inherits from
that but just overrides the FieldAttributes which now have defaults)
* Revert "One to throw away"
This reverts commit 23aa883cbed11429ef1be2a2d0ed18f83a3b8064.
* Set FieldAttr defaults directly from CLIARGS
* Remove dead code
* Move timeout directly to PlayContext, it's never needed on Play
* just for backwards compat, add a static version of BECOME_METHODS to constants
* Make the become attr on the connection public, since it's used outside of the connection
* Logic fix
* Nuke connection testing if it supports specific become methods
* Remove unused vars
* Address rebase issues
* Fix path encoding issue
* Remove unused import
* Various cleanups
* Restore network_cli check in _low_level_execute_command
* type improvements for cliargs_deferred_get and swap shallowcopy to default to False
* minor cleanups
* Allow the su plugin to work, since it doesn't define a prompt the same way
* Fix up ksu become plugin
* Only set prompt if build_become_command was called
* Add helper to assist connection plugins in knowing they need to wait for a prompt
* Fix tests and code expectations
* Doc updates
* Various additional minor cleanups
* Make doas functional
* Don't change connection signature, load become plugin from TaskExecutor
* Remove unused imports
* Add comment about setting the become plugin on the playcontext
* Fix up tests for recent changes
* Support 'Password:' natively for the doas plugin
* Make default prompts raw
* wording cleanups. ci_complete
* Remove unrelated changes
* Address spelling mistake
* Restore removed test, and udpate to use new functionality
* Add changelog fragment
* Don't hard fail in set_attributes_from_cli on missing CLI keys
* Remove unrelated change to loader
* Remove internal deprecated FieldAttributes now
* Emit deprecation warnings now
2019-02-11 18:27:44 +01:00
|
|
|
DOC_PLUGINS ?= become cache callback cliconf connection httpapi inventory lookup shell strategy vars
|
2017-09-23 05:19:50 +02:00
|
|
|
|
2017-06-02 20:11:28 +02:00
|
|
|
assertrst:
|
|
|
|
ifndef rst
|
|
|
|
$(error specify document or pattern with rst=somefile.rst)
|
|
|
|
endif
|
|
|
|
|
2017-01-18 03:55:03 +01:00
|
|
|
all: docs
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2018-09-12 22:50:36 +02:00
|
|
|
docs: htmldocs
|
2014-05-09 23:13:01 +02:00
|
|
|
|
2019-03-05 19:22:17 +01:00
|
|
|
generate_rst: config cli keywords modules plugins testing
|
2017-09-07 21:44:20 +02:00
|
|
|
|
2017-09-13 22:45:05 +02:00
|
|
|
htmldocs: generate_rst
|
2017-01-13 20:32:27 +01:00
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx html
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2017-09-13 22:45:05 +02:00
|
|
|
singlehtmldocs: generate_rst
|
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx singlehtml
|
|
|
|
|
2017-01-18 03:55:03 +01:00
|
|
|
webdocs: docs
|
2016-01-25 16:33:50 +01:00
|
|
|
|
2017-01-18 03:55:03 +01:00
|
|
|
#TODO: leaving htmlout removal for those having older versions, should eventually be removed also
|
2012-10-08 13:44:38 +02:00
|
|
|
clean:
|
2018-03-01 01:01:18 +01:00
|
|
|
@echo "Cleaning $(BUILDDIR)"
|
|
|
|
-rm -rf $(BUILDDIR)/doctrees
|
|
|
|
-rm -rf $(BUILDDIR)/html
|
2013-06-09 19:55:58 +02:00
|
|
|
-rm -rf htmlout
|
2017-12-21 10:47:39 +01:00
|
|
|
-rm -rf module_docs
|
2017-01-13 20:32:27 +01:00
|
|
|
-rm -rf _build
|
2012-10-08 13:44:38 +02:00
|
|
|
-rm -f .buildinfo
|
2017-04-10 20:01:10 +02:00
|
|
|
-rm -f objects.inv
|
2012-10-08 13:44:38 +02:00
|
|
|
-rm -rf *.doctrees
|
2014-01-03 02:35:29 +01:00
|
|
|
@echo "Cleaning up minified css files"
|
|
|
|
find . -type f -name "*.min.css" -delete
|
2012-10-08 13:44:38 +02:00
|
|
|
@echo "Cleaning up byte compiled python stuff"
|
|
|
|
find . -regex ".*\.py[co]$$" -delete
|
|
|
|
@echo "Cleaning up editor backup files"
|
|
|
|
find . -type f \( -name "*~" -or -name "#*" \) -delete
|
|
|
|
find . -type f \( -name "*.swp" \) -delete
|
2014-01-28 17:04:34 +01:00
|
|
|
@echo "Cleaning up generated rst"
|
2018-10-19 23:06:15 +02:00
|
|
|
rm -f rst/modules/*_by_category.rst
|
|
|
|
rm -f rst/modules/list_of_*.rst
|
|
|
|
rm -f rst/modules/*_maintained.rst
|
|
|
|
rm -f rst/modules/*_module.rst
|
|
|
|
rm -f rst/modules/*_plugin.rst
|
|
|
|
rm -f rst/playbooks_directives.rst
|
|
|
|
rm -f rst/plugins/*/*.rst
|
|
|
|
rm -f rst/reference_appendices/config.rst
|
|
|
|
rm -f rst/reference_appendices/playbooks_keywords.rst
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2018-02-13 19:52:13 +01:00
|
|
|
.PHONY: docs clean
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2017-09-07 21:44:20 +02:00
|
|
|
# TODO: make generate_man output dir cli option
|
|
|
|
cli: $(GENERATE_CLI)
|
2018-02-13 23:43:26 +01:00
|
|
|
mkdir -p rst/cli
|
2018-02-13 16:23:55 +01:00
|
|
|
PYTHONPATH=../../lib $(GENERATE_CLI) --template-file=../templates/cli_rst.j2 --output-dir=rst/cli/ --output-format rst ../../lib/ansible/cli/*.py
|
2017-09-07 21:44:20 +02:00
|
|
|
|
2017-03-23 06:13:23 +01:00
|
|
|
keywords: $(FORMATTER) ../templates/playbooks_keywords.rst.j2
|
2018-02-13 16:23:55 +01:00
|
|
|
PYTHONPATH=../../lib $(DUMPER) --template-dir=../templates --output-dir=rst/reference_appendices/ -d ./keyword_desc.yml
|
2016-02-25 22:41:50 +01:00
|
|
|
|
2017-08-31 16:11:05 +02:00
|
|
|
config:
|
2018-02-13 16:23:55 +01:00
|
|
|
PYTHONPATH=../../lib $(CONFIG_DUMPER) --template-file=../templates/config.rst.j2 --output-dir=rst/reference_appendices/ -d ../../lib/ansible/config/base.yml
|
2017-08-31 16:11:05 +02:00
|
|
|
|
2017-03-23 06:13:23 +01:00
|
|
|
modules: $(FORMATTER) ../templates/plugin.rst.j2
|
2018-02-13 16:23:55 +01:00
|
|
|
PYTHONPATH=../../lib $(FORMATTER) -t rst --template-dir=../templates --module-dir=../../lib/ansible/modules -o rst/modules/ $(MODULE_ARGS)
|
2017-09-19 17:14:27 +02:00
|
|
|
|
|
|
|
plugins: $(FORMATTER) ../templates/plugin.rst.j2
|
2017-09-23 05:19:50 +02:00
|
|
|
@echo "looping over doc plugins"
|
|
|
|
for plugin in $(DOC_PLUGINS); \
|
|
|
|
do \
|
2018-02-13 16:23:55 +01:00
|
|
|
PYTHONPATH=../../lib $(FORMATTER) -t rst --plugin-type $$plugin --template-dir=../templates --module-dir=../../lib/ansible/plugins/$$plugin -o rst $(PLUGIN_ARGS); \
|
2017-09-23 05:19:50 +02:00
|
|
|
done
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2017-07-14 15:24:45 +02:00
|
|
|
testing:
|
|
|
|
$(TESTING_FORMATTER)
|
|
|
|
|
2017-05-01 19:40:49 +02:00
|
|
|
epub:
|
2018-05-25 05:30:14 +02:00
|
|
|
(CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx epub)
|
2017-06-02 20:11:28 +02:00
|
|
|
|
|
|
|
htmlsingle: assertrst
|
2018-03-01 01:01:18 +01:00
|
|
|
sphinx-build -j $(CPUS) -b html -d $(BUILDDIR)/doctrees ./rst $(BUILDDIR)/html rst/$(rst)
|
2018-04-05 19:46:46 +02:00
|
|
|
@echo "Output is in $(BUILDDIR)/html/$(rst:.rst=.html)"
|