From 03d8b6854951d1c551a52c941c64bd32bfcd666e Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 21 Sep 2018 15:08:57 -0400 Subject: [PATCH] added note about cli execution of include_x (#45227) --- docs/docsite/rst/porting_guides/porting_guide_2.7.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/docsite/rst/porting_guides/porting_guide_2.7.rst b/docs/docsite/rst/porting_guides/porting_guide_2.7.rst index 00438b0db1f..6070419b331 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_2.7.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_2.7.rst @@ -198,6 +198,10 @@ Noteworthy module changes * The ``win_disk_image`` module has deprecated the return value ``mount_path``, use ``mount_paths[0]`` instead. This will be removed in Ansible 2.11. +* ``include_role`` and ``include_tasks`` can now be used directly from ``ansible`` (adhoc) and ``ansible-console``:: + + #> ansible -m include_role -a 'name=myrole' all + Plugins =======