shell bypass 403
GrazzMean Shell
: /home/homesquasz/devprod/Directeur/node_modules/concurrently/dist/src/flow-control/ [ drwx---r-x ]
import { Command } from '../command';
import { Logger } from '../logger';
import { FlowController } from './flow-controller';
export declare type ProcessCloseCondition = 'failure' | 'success';
/**
* Sends a SIGTERM signal to all commands when one of the exits with a matching condition.
*/
export declare class KillOthers implements FlowController {
private readonly logger;
private readonly conditions;
constructor({ logger, conditions }: {
logger: Logger;
conditions: ProcessCloseCondition | ProcessCloseCondition[];
});
handle(commands: Command[]): {
commands: Command[];
};
}