Merge pull request #1434 from GNS3/vmware-virtualbox-deprecated

Mark VMware and VirtualBox support as deprecated
This commit is contained in:
Jeremy Grossmann 2023-02-06 06:26:14 +05:45 committed by GitHub
commit 17a9e3d089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@ export class AddVirtualBoxTemplateComponent implements OnInit {
}
ngOnInit() {
this.toasterService.error(`VirtualBox VM support is deprecated and will be removed in a future version, please use Qemu VMs instead`);
const controller_id = this.route.snapshot.paramMap.get('controller_id');
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
this.controller = controller;

View File

@ -37,6 +37,7 @@ export class AddVmwareTemplateComponent implements OnInit {
}
ngOnInit() {
this.toasterService.error(`VMware VM support is deprecated and will be removed in a future version, please use Qemu VMs instead`);
const controller_id = this.route.snapshot.paramMap.get('controller_id');
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
this.controller = controller;