PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/beacons/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/beacons/junos_rre_keys.py |
""" Junos redundant routing engine beacon. .. note:: This beacon only works on the Juniper native minion. Copies salt-minion keys to the backup RE when present Configure with .. code-block:: yaml beacon: beacons: junos_rre_keys: - interval: 43200 `interval` above is in seconds, 43200 is recommended (every 12 hours) """ __virtualname__ = "junos_rre_keys" def beacon(config): ret = [] engine_status = __salt__["junos.routing_engine"]() if not engine_status["success"]: return [] for e in engine_status["backup"]: result = __salt__["junos.dir_copy"]("/var/local/salt/etc", e) ret.append({"result": result, "success": True}) return ret