Skip to content

Commit

Permalink
to* options required for copy
Browse files Browse the repository at this point in the history
  • Loading branch information
vepkenez committed May 16, 2022
1 parent 799dccf commit 9353b6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nucypher_ops/cli/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def add(host_address, login_name, key_path, ssh_port, nickname, namespace, netwo


@cli.command('copy')
@click.option('--to-namespace', help="Namespace for these operations. Used to address hosts and data locally and name hosts on cloud platforms.", type=click.STRING, default='nucypher')
@click.option('--to-network', help="The Nucypher network name these hosts will run on. (default mainnet)", type=click.STRING, default=DEFAULT_NETWORK)
@click.option('--to-namespace', help="Namespace for these operations. Used to address hosts and data locally and name hosts on cloud platforms.", type=click.STRING, required=True)
@click.option('--to-network', help="The Nucypher network name these hosts will run on. (default mainnet)", type=click.STRING, required=True)
@click.option('--from', 'from_path', help="The 'path' of a node in /network/namespace/name format ie. '/mainnet/aws-us-east-nodes/aws-1'", type=click.STRING, required=True)
def copy(from_path, to_network, to_namespace):
"""
Expand Down

0 comments on commit 9353b6a

Please sign in to comment.