Skip to content
Snippets Groups Projects
Select Git revision
  • 378db9abd685422ff976af6a57b17524f749d44b
  • master default protected
2 results

10podman

Blame
    • ale's avatar
      376a8c9f
      Add Podman compatibility · 376a8c9f
      ale authored
      Restore Podman iptables rules using a reload-hook that invokes "podman
      network reload".
      
      Also drop obsolete and hacky Docker compatibility.
      376a8c9f
      History
      Add Podman compatibility
      ale authored
      Restore Podman iptables rules using a reload-hook that invokes "podman
      network reload".
      
      Also drop obsolete and hacky Docker compatibility.
    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