Juniper Tech Library says it should look like this:
<rpc>
<load-configuration>
<!-- replace a pattern globally -->
<configuration replace-pattern="pattern1" with="pattern2" [upto="n"]>
</configuration>
</load-configuration>
</rpc>
But I have no idea how to format this kind of rpc request to junos_rc module:
The problem is, I think, that there are one tag nested in onother- <load-configuration> and <configurationa>.
Itried this way but It gives mi an error:
- name: replace pattern junos_rpc:
rpc: load-configuration configuration
attrs:
replace-pattern="pattern1"
with="pattern2
I tried also this way and it gives me "OK" response but it doesn't change anything in configuration:
- name: replace pattern junos_rpc:
rpc: load-configuration
attrs:
replace-pattern="pattern1"
with="pattern2
Any other idea?
Thanks in advance,
Michal