I have restored OpenVZ VPS backup via command line, removing all ips from it and then in HyperVM beta tried to click "Import RAW VPS", it imported VPS with IP set as: ______________

And when i try to later delete the VPS from HyperVM, it says:

hypervm Invalid IP address: ______________ Contains both dot and colon!

Is there any work around? I already tried to add new IP, but the _____ is still there..

------

UPDATE: i solved it not elegantly, but this way:

1. First export HyperVM mysql, backup it, replace underscore phrase by an IP:

mysqldump -u root -pMySQLRootPasswordHere hypervm1_0 > hypervm_db.sql;cp -fp hypervm_db.sql hypervm_db_bckp.sql;sed -i "s|______________|1.2.3.4|g" hypervm_db.sql;2. Then check that both .sql files exist and are valid, full exports:

ls -lt|head
diff hypervm_db.sql hypervm_db_bckp.sql

3. Then if yes, you can execute full command which will also import modified file back to the mysql:

mysqldump -u root -pMySQLRootPasswordHere hypervm1_0 > hypervm_db.sql;cp -fp hypervm_db.sql hypervm_db_bckp.sql;sed -i "s|______________|1.2.3.4|g" hypervm_db.sql;mysql -u root -pMySQLRootPasswordHere hypervm1_0 < hypervm_db.sql

Good, i was then able to remove VPS via HyperVM, because it got IP 1.2.3.4