parser=argparse.ArgumentParser(description='tool to synchronize ceph rbd images between two clusters, using ssh',usage='python3 main.py --source username@server:rbd/image_name --destination rbd_backup/backup_test_destination')
log_message('beginning incremental copy from '+ceph_rbd_object_to_path(source)+' to '+ceph_rbd_object_to_path(destination),LOGLEVEL_INFO)
log_message('beginning incremental copy from '+ceph_rbd_object_to_path(source)+'@'+snapshot_old+' to '+ceph_rbd_object_to_path(destination),LOGLEVEL_INFO)
# TODO: start incremental image copy, using export-diff, to destination
log_message(BackgroundColors.OKGREEN+'Done with '+ceph_rbd_object_to_path(source)+' -> '+ceph_rbd_object_to_path(destination)+BackgroundColors.ENDC,LOGLEVEL_INFO)