Skip to content

Commit b9196d7

Browse files
committed
Pass the id argument.
1 parent 1024e55 commit b9196d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

virl/cli/start/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@click.command()
1010
@click.argument("node", required=False)
1111
@click.option("--id", required=False, help="An existing node ID to start (the node name argument is ignored)")
12-
def start(node):
12+
def start(node, id):
1313
"""
1414
start a node
1515
"""

virl/cli/stop/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@click.command()
1111
@click.argument("node", required=False)
1212
@click.option("--id", required=False, help="An existing node ID to stop (the node name argument is ignored)")
13-
def stop(node):
13+
def stop(node, id):
1414
"""
1515
stop a node
1616
"""

0 commit comments

Comments
 (0)