Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

dovecot-exporter.service

Blame
  • Forked from ai3 / thirdparty / dovecot-exporter
    Source project has a limited visibility.
    10podman 132 B
    #!/bin/sh
    
    set -e
    
    if [ -x /usr/bin/podman -a -e /run/podman/podman.sock ]; then
        podman --noout network reload --all
    fi
    
    exit 0