antlir/recv_fds_and_run.py [53:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    )
    parser.add_argument(
        "--no-set-listen-fds",
        action="store_false",
        dest="set_listen_fds",
        help="Do not set LISTEN_FDS and LISTEN_PID on the wrapped process. By "
        "default we set these just in case this wraps `systemd-nspawn` -- "
        "that tells it to forward our FDS to the container. If the extra "
        "environment variables are a problem for you, pass this option.",
    )
    parser.add_argument(
        "cmd", nargs="+", help="The command to wrap and supply with FDs."
    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



antlir/send_fds_and_run.py [157:169]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    )
    parser.add_argument(
        "--no-set-listen-fds",
        action="store_false",
        dest="set_listen_fds",
        help="Do not set LISTEN_FDS and LISTEN_PID on the wrapped process. By "
        "default we set these just in case this wraps `systemd-nspawn` -- "
        "that tells it to forward our FDS to the container. If the extra "
        "environment variables are a problem for you, pass this option.",
    )
    parser.add_argument(
        "cmd", nargs="+", help="The command to wrap and supply with FDs."
    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



