Denis
Denis
Capability to ignore files can be useful for: - ignore troublesome code - ignore chunks of python module that we not documenting - speed improvement? probably not too important though...
Would recommend to try simplifying your template e.g. this gives same results as yours one but a bit easier to read IMHO: ``` HASH3 = "\#\#\#" {{ ignore("HASH3") }} START...
Hi, could you share sample code you are running to recreate the issue, x_pos and y_pos does not have to be provided at the same time.
Hi, as per [docs](https://ktbyers.github.io/netmiko/docs/netmiko/index.html): ``` :param ttp_template: Name of template to parse output with; can be fully qualified path, relative path, or name of file in current directory. (default: None)....
`error: group.get_regexes: variable not found in line: ' ipv4-family' `- you seeing this error because ipv4-family line does not contain any `{{ variables }}` In theory relative OS path should...
Think the best way to approach this is to contribute to SaltStack by updating influxdb returner to latest supported version or b writing influxdb2 extension returner module that can be...
Hi, Try this template: ``` SVC_PORTS = "tcp-udp|tcp|udp" object-group {{ object_type }} {{ object_name | _start_ }} object-group {{ object_type }} {{ object_name | _start_ }} {{ protocol | re("SVC_PORTS")}}...
Have a look at [to_ip](https://ttp.readthedocs.io/en/latest/Match%20Variables/Functions.html#to-ip) function `network-object {{ ip | PHRASE | to_ip | with_prefixlen }}`
There is `joinmatches` function available that can help in certain cases, also group function `sformat` can concatenate matches in a string, but in your case you not only need to...
Yes, that one of the options. You need to apply match filtering here, either using regexes or pattern check, for instance this should do the trick as well `network-object {{...