Release 1.4.3
Summary
This is primarily a maintenance release to provide compatibility with the latest Ansible 2.4.0 release.
New Features
Add the force_host
argument to junos_install_os
. #233/#234
- By default, the Host Software package on QFX-series platforms is not
upgraded by the<request-package-add>
RPC. Adding the<force-host/>
argument to the RPC forces the Host Software package to also be upgraded.
This PR adds the ability to pass theforce_host
argument to the
junos_install_os
module. This optional boolean argument defaults
toFalse
. When set toTrue
, it passes the<force-host/>
argument to
the underlying<request-package-add>
RPC.
Add new re_name
and master_state
facts to junos_get_facts
. #239
- These new facts are based on the
dev.re_name
anddev.master
PyEZ device properties.
ignore_warning
support for junos_install_config
. #248
- The new
ignore_warning
parameter can be used to ignore warnings generated
when loading a configuration withjunos_install_config
- If
ignore_warning=True
then ALL warnings are ignored - If
ignore_warning=<string_val>
then all warnings matching<string_val>
are ignored. - If
ignore_warning=<list_of_string_vals>
then all warnings matching any of the
<string_vals>
in the list are ignored.
- If