Re: [PATCH] tracing/selftests: Add ownership modification tests for eventfs
From: Steven Rostedt
Date: Thu Dec 21 2023 - 19:39:58 EST
On Thu, 21 Dec 2023 19:35:51 -0500
Steven Rostedt <rostedt@xxxxxxxxxxx> wrote:
> +
> +# find another owner and group that is not the original
> +other_group=`tac /etc/group | grep -v ":$original_group:" | head -1 | cut -d: -f3`
> +other_owner=`tac /etc/passwd | grep -v ":$original_group:" | head -1 | cut -d: -f3`
Bah, cut and paste error. Let me send a v2
It only worked because $original_group == $original_owner
:-/
-- Steve