Merge "Fix kill-script search string to match any "/libpod-""

This commit is contained in:
Zuul 2022-10-05 04:48:37 +00:00 committed by Gerrit Code Review
commit f4d1d830a7
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ delete_container() {
{% raw -%}
if [ -f /proc/$PID/cgroup ]; then
# Get container ID based on process cgroups
CT_ID=$(awk 'BEGIN {FS=".scope|-"} /0::|:pids:/ {if ($(NF-1)) print $(NF-1);exit}' /proc/$PID/cgroup)
CT_ID=$(awk 'BEGIN {FS=".scope|-"} /\/libpod-/ {if ($(NF-1)) print $(NF-1);exit}' /proc/$PID/cgroup)
CT_NAME=$($CLI inspect -f '{{.Name}}' $CT_ID)
case $SIG in