Skip to content
Snippets Groups Projects
Commit 61e08e76 authored by Florian Schaal's avatar Florian Schaal
Browse files

openvz: free all ip-addresses if the vm was deleted

parent 1dbd0e35
Loading
...@@ -130,10 +130,12 @@ class vm_openvz_plugin { ...@@ -130,10 +130,12 @@ class vm_openvz_plugin {
global $app, $conf; global $app, $conf;
//* Free the IP address //* Free the IP address
$tmp = $app->db->queryOneRecord("SELECT ip_address_id FROM openvz_ip WHERE vm_id = ?", $page_form->id); $tmp_rec = $app->db->queryAllRecords("SELECT ip_address_id FROM openvz_ip WHERE vm_id = ?", $page_form->id);
$app->db->datalogUpdate('openvz_ip', array('vm_id' => 0), 'ip_address_id', $tmp['ip_address_id']); foreach ($tmp_rec as $tmp) {
$app->db->datalogUpdate('openvz_ip', array('vm_id' => 0), 'ip_address_id', $tmp['ip_address_id']);
}
unset($tmp); unset($tmp);
unset($tmp_rec);
} }
private function applyTemplate() { private function applyTemplate() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment