diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-08-29 21:09:37 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-08-30 19:43:31 +0200 |
commit | 0cb795e432f6b318b07a0e4878e041233e7d7f7c (patch) | |
tree | 6788d93dc2326e9b787127cd15734f6c3402befc /contrib | |
parent | b6742d173c063192feb2072a17e60549e32c7442 (diff) | |
download | passt-0cb795e432f6b318b07a0e4878e041233e7d7f7c.tar passt-0cb795e432f6b318b07a0e4878e041233e7d7f7c.tar.gz passt-0cb795e432f6b318b07a0e4878e041233e7d7f7c.tar.bz2 passt-0cb795e432f6b318b07a0e4878e041233e7d7f7c.tar.lz passt-0cb795e432f6b318b07a0e4878e041233e7d7f7c.tar.xz passt-0cb795e432f6b318b07a0e4878e041233e7d7f7c.tar.zst passt-0cb795e432f6b318b07a0e4878e041233e7d7f7c.zip |
podman, slirp4netns.sh: Use --netns option on pasta's command line2022_08_29.0cb795e
...instead of PATH. This seems to be the only change needed in
existing pasta integrations after patch:
Use explicit --netns option rather than multiplexing with PID
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/podman/0001-libpod-Add-pasta-networking-mode.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/podman/0001-libpod-Add-pasta-networking-mode.patch b/contrib/podman/0001-libpod-Add-pasta-networking-mode.patch index 884ebf7..bf608f1 100644 --- a/contrib/podman/0001-libpod-Add-pasta-networking-mode.patch +++ b/contrib/podman/0001-libpod-Add-pasta-networking-mode.patch @@ -1,4 +1,4 @@ -From 9f61d4107f7cce5fb4157e18c67fad9c135d7b9f Mon Sep 17 00:00:00 2001 +From 321b58cf7e9eadb6073c286ed6709747770f5964 Mon Sep 17 00:00:00 2001 From: Stefano Brivio <sbrivio@redhat.com> Date: Mon, 2 May 2022 16:12:07 +0200 Subject: [PATCH] libpod: Add pasta networking mode @@ -354,7 +354,7 @@ index c10c3c0b2..0f0c1213c 100644 } diff --git a/libpod/networking_pasta.go b/libpod/networking_pasta.go new file mode 100644 -index 000000000..66f81cbfc +index 000000000..f179c803a --- /dev/null +++ b/libpod/networking_pasta.go @@ -0,0 +1,107 @@ @@ -452,7 +452,7 @@ index 000000000..66f81cbfc + cmdArgs = append(cmdArgs, "-U", "none") + } + -+ cmdArgs = append(cmdArgs, netns.Path()) ++ cmdArgs = append(cmdArgs, "--netns", netns.Path()) + + logrus.Debugf("pasta arguments: %s", strings.Join(cmdArgs, " ")) + |