Unverified Commit c28314d4 authored by Mattia Rizzolo's avatar Mattia Rizzolo
Browse files

reproducible debian: schedule: also report the salsa_username to be saved



The only reason we care here is because there are protections in place
to prevent mass scheduling from single users, and identifying the users
with the salsa username makes it possible to workaround said
protections.

Also, the scheduling users is logged on IRC.

Assume people are good.

Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mattia@debian.org>
parent 20c9da5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ def main(args):
                    check=True,
                    stdout=subprocess.PIPE,
                    stderr=subprocess.STDOUT,
                    env={'LC_USER': user},
                    env={'LC_USER': f'{salsa_username}:{user}'},
                )
                processes.append(p)
            except subprocess.CalledProcessError as e: