pvesh and description

Vasilisc

Renowned Member
Jun 29, 2017
35
3
73
46
vasilisc.com
If the description contains non-alphabetic characters, you can not create a snapshot on another server

Run the command from the server p1
Code:
root@p1 #  pvesh create /nodes/p1/qemu/125/snapshot -snapname "ss_test1" -description "automatically created" -vmstate false
200 OK

Code:
root@p1 #  pvesh create /nodes/p6/qemu/116/snapshot -snapname "ss_test2" -description "automatically created" -vmstate false
400 too many arguments
create nodes/p6/qemu/116/snapshot -snapname <string> [OPTIONS]
proxy handler failed

Delete the space character in description
Code:
root@p1 #  pvesh create /nodes/p1/qemu/125/snapshot -snapname "ss_test1" -description "automatically" -vmstate false
200 OK

Code:
root@p1 #  pvesh create /nodes/p6/qemu/116/snapshot -snapname "ss_test2" -description "automatically" -vmstate false
200 OK