def newGuyCLI(looper, tdir, tconf):
    # FIXME: rework logic of setup because Setup.setupAll does not exist anymore
    # Setup(tdir).setupAll()
    return newCLI(looper, tdir, subDirectory='newguy', conf=tconf)
Beispiel #2
0
def trustAnchorCli(looper, tdir):
    return newCLI(looper, tdir)
def newGuyCLI(looper, tdir, tconf):
    # FIXME: rework logic of setup because Setup.setupAll does not exist anymore
    # Setup(tdir).setupAll()
    return newCLI(looper, tdir, subDirectory='newguy', conf=tconf)
Beispiel #4
0
def nodesCli(looper, tdir, nodeNames):
    cli = newCLI(looper, tdir)
    cli.enterCmd("new node all")
    waitAllNodesStarted(cli, *nodeNames)
    return cli
Beispiel #5
0
def cli(looper, tdir):
    return newCLI(looper, tdir)
Beispiel #6
0
def trustAnchorCli(looper, tdir):
    return newCLI(looper, tdir)
Beispiel #7
0
def newGuyCLI(looper, tdir, tconf):
    Setup(tdir).setupAll()
    return newCLI(looper, tdir, subDirectory='newguy', conf=tconf)
Beispiel #8
0
def sponsorCli(looper, tdir):
    return newCLI(looper, tdir)
Beispiel #9
0
def cli(looper, tdir):
    return newCLI(looper, tdir)
Beispiel #10
0
def nodesCli(looper, tdir, nodeNames):
    cli = newCLI(looper, tdir)
    cli.enterCmd("new node all")
    waitAllNodesStarted(cli, *nodeNames)
    return cli