work
This commit is contained in:
11
main.py
11
main.py
@ -64,6 +64,14 @@ def main():
|
||||
help="Name of the destination organization"
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
"--no-verify-ssl",
|
||||
dest="verify_ssl",
|
||||
default=True,
|
||||
action="store_false",
|
||||
help="Don't verify SSL certificates",
|
||||
)
|
||||
|
||||
args = parser.parse_args()
|
||||
mig = Migrator(
|
||||
source_host=args.source_hostname,
|
||||
@ -73,9 +81,10 @@ def main():
|
||||
destination_port=args.destination_port,
|
||||
destination_token=args.destination_token
|
||||
)
|
||||
mig.set_verify_ssl(args.verify_ssl)
|
||||
mig.migrate_entire_org(
|
||||
source_org=args.source_org,
|
||||
destination_org=args.destination_org
|
||||
destination_org=args.destination_org,
|
||||
)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user