Skip to content

Commit

Permalink
rootless: system service joins immediately the namespaces
Browse files Browse the repository at this point in the history
when there is a pause process running, let the "system service" podman
instance join immediately the existing namespaces.

Closes: containers#7180
Closes: containers#6660

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
  • Loading branch information
giuseppe committed Aug 3, 2020
1 parent bfd3454 commit af2ae9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/rootless/rootless_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ can_use_shortcut ()

if (strcmp (argv[argc], "mount") == 0
|| strcmp (argv[argc], "search") == 0
|| strcmp (argv[argc], "system") == 0)
|| (strcmp (argv[argc], "system") == 0 && strcmp (argv[argc+1], "service") != 0))
{
ret = false;
break;
Expand Down

0 comments on commit af2ae9b

Please sign in to comment.