summaryrefslogtreecommitdiff
path: root/contrib/cirrus/logformatter
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-01-18 15:42:06 -0500
committerGitHub <noreply@github.com>2022-01-18 15:42:06 -0500
commit094b11cbcb528a7d120c31402a1bcd9c82d84938 (patch)
tree3ce00f13dda775d979a093658f26cea4122646d9 /contrib/cirrus/logformatter
parent62212dbf490d736ad06523a92345a480e4972dab (diff)
parentc0e07234631cfcea1d6724c05606964a4d833f39 (diff)
downloadpodman-094b11cbcb528a7d120c31402a1bcd9c82d84938.tar.gz
podman-094b11cbcb528a7d120c31402a1bcd9c82d84938.tar.bz2
podman-094b11cbcb528a7d120c31402a1bcd9c82d84938.zip
Merge pull request #12908 from Luap99/network-conf-dir
rename --cni-config-dir to --network-config-dir
Diffstat (limited to 'contrib/cirrus/logformatter')
-rwxr-xr-xcontrib/cirrus/logformatter2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cirrus/logformatter b/contrib/cirrus/logformatter
index 70f119b5b..49ca91399 100755
--- a/contrib/cirrus/logformatter
+++ b/contrib/cirrus/logformatter
@@ -341,7 +341,7 @@ END_HTML
# Highlight the important (non-boilerplate) podman command.
$line =~ s/\s+--remote\s+/ /g; # --remote takes no args
# Strip out the global podman options, but show them on hover
- $line =~ s{(\S+\/podman(-remote)?)((\s+--(root|runroot|runtime|tmpdir|storage-opt|conmon|cgroup-manager|cni-config-dir|storage-driver|events-backend|url) \S+)*)(.*)}{
+ $line =~ s{(\S+\/podman(-remote)?)((\s+--(root|runroot|runtime|tmpdir|storage-opt|conmon|cgroup-manager|network-config-dir|storage-driver|events-backend|url) \S+)*)(.*)}{
my ($full_path, $remote, $options, $args) = ($1, $2||'', $3, $6);
$options =~ s/^\s+//;