diff options
author | Jordan Borean <jborean93@gmail.com> | 2018-07-25 12:02:49 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 12:02:49 +1000 |
commit | 2c9cbae3f9fe289e77168efdbcc8ee4b4547b931 (patch) | |
tree | ae41525c3efe61a269716786692280ce52e32908 /docs | |
parent | 5eb47066e34b67db22b323a23be77fdb755dd8e0 (diff) | |
download | ansible-2c9cbae3f9fe289e77168efdbcc8ee4b4547b931.tar.gz |
Removed deprecated Windows items slated for removed in 2.7 (#43231)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docsite/rst/porting_guides/porting_guide_2.7.rst | 13 |
1 files changed, 13 insertions, 0 deletions
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 9ba340345e..a6837d7fac 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_2.7.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_2.7.rst @@ -108,6 +108,19 @@ Noteworthy module changes escape any double quotes in the value. This is no longer required and the escaping may cause further issues. +* The ``win_uri`` module has removed the deprecated option ``use_basic_parsing``, since Ansible 2.5 this option did + nothing + +* The ``win_scheduled_task`` module has removed the following deprecated options: + + * ``executable``, use ``path`` in an actions entry instead + * ``argument``, use ``arguments`` in an actions entry instead + * ``store_password``, set ``logon_type: password`` instead + * ``days_of_week``, use ``monthlydow`` in a triggers entry instead + * ``frequency``, use ``type``, in a triggers entry instead + * ``time``, use ``start_boundary`` in a triggers entry instead + + Plugins ======= |