16 lines
533 B
Bash
Executable File
16 lines
533 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Vitastor OpenNebula driver
|
|
# Copyright (c) Vitaliy Filippov, 2024+
|
|
# License: Apache-2.0 http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
# mvds host:remote_system_ds/disk.i fe:SOURCE vmid dsid
|
|
# - fe is the front-end hostname
|
|
# - SOURCE is the path of the disk image in the form DS_BASE_PATH/disk
|
|
# - host is the target host to deploy the VM
|
|
# - remote_system_ds is the path for the system datastore in the host
|
|
# - vmid is the id of the VM
|
|
# - dsid is the target datastore (0 is the system datastore)
|
|
|
|
exit 0
|