Skip to content

Commit

Permalink
Merge pull request #7192 from giuseppe/system-service-join-ns-immedia…
Browse files Browse the repository at this point in the history
…tely

rootless: system service joins immediately the namespaces
  • Loading branch information
openshift-merge-robot authored Aug 4, 2020
2 parents 919e5d4 + 8df7ab2 commit 861702e
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 && argv[argc+1] && strcmp (argv[argc+1], "service") != 0))
{
ret = false;
break;
Expand Down

0 comments on commit 861702e

Please sign in to comment.