qa/vstart_runner.py: add a note about omitting sudo

About the commit date: this commit got dropped from the patch series
during some PR branch update but is added back now.

Signed-off-by: Rishabh Dave <ridave@redhat.com>
This commit is contained in:
Rishabh Dave 2022-04-25 13:18:47 +05:30
parent 43b170ab18
commit 8d4ef76923

View File

@ -425,6 +425,8 @@ ceph-coverage() {
# We'll let sudo be a part of command even omit flag says otherwise in
# cases of commands which can normally be ran only by root.
last_arg = args[args.rfind(' ') + 1 : ]
# XXX: should sudo be omitted/allowed by default in cases similar to
# that of "exec sudo" as well?
if 'sudo' in args:
for x in ('passwd', 'chown'):
if x == first_arg or x == last_arg or f' {x} ' in args: