ports/sysutils/zrepl-dsh2dsh
Denis Shaposhnikov 0e71889470 sysutils/zrepl-dsh2dsh: update to 0.8.5
Changelog: https://github.com/dsh2dsh/zrepl/releases/tag/v0.8.5

New configuration for control and prometheus services. Example:

listen:
  # control socket for zrepl client, like `zrepl signal` or `zrepl status`.
  - unix: "/var/run/zrepl/control"
    # unix_mode: 0o660		  # write perm for group
    control: true

  # Export Prometheus metrics on http://127.0.0.1:8000/metrics
  - addr: "127.0.0.1:8000"
    # tls_cert: "/usr/local/etc/zrepl/cert.pem"
    # tls_key: "/usr/local/etc/zrepl/key.pem"
    metrics: true

One of `addr` or `unix` is required or both of them can be configured. One of
`control` or `metrics` is required or both of them can be configured too.
Everything else is optional. For backward compatibility old style configuration
works too.

PR:		282054
2024-10-21 11:36:03 +02:00
..