From cb1b3158195337b08cabdf91f8ad883ee9325165 Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 26 Jan 2024 08:56:23 +0100 Subject: [PATCH] update mkvm.ps1 --- roles/zabbix-srv/tasks/main.yml | 5 +++++ scripts/mkvm.ps1 | 21 ++++++++++++++++++--- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/roles/zabbix-srv/tasks/main.yml b/roles/zabbix-srv/tasks/main.yml index a1369e2..d9b80f0 100644 --- a/roles/zabbix-srv/tasks/main.yml +++ b/roles/zabbix-srv/tasks/main.yml @@ -81,3 +81,8 @@ name: apache2 state: restarted enabled: yes + + - name: 14. Gotify + copy: + src: gotify.sh + dest: /usr/lib/zabbix/alertscripts diff --git a/scripts/mkvm.ps1 b/scripts/mkvm.ps1 index 4e14ff7..01177fd 100644 --- a/scripts/mkvm.ps1 +++ b/scripts/mkvm.ps1 @@ -11,12 +11,27 @@ $ovafilefog="$HOME\Downloads\debian-bullseye-gsb-${ovafogrelease}.ova" $vboxmanage="C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" $deletemode=0 +$vmMem = @{ + "r-int" = "512" + "r-ext" = "512" + "s-nas" = "512" + "s-infra" = "768" + "s-backup" = "768" + "s-elk" = "3072" +} + #FONCTIONS function create_vm{ param([string]$nomvm) - #Importation depuis l'ova - & "$vboxmanage" import "$ovafile" --vsys 0 --vmname "$nomvm" - Write-Host "Machine $nomvm importée" + + if ($vmMem.ContainsKey($nomvm)) { + & "$vboxmanage" import "$ovafile" --vsys 0 --vmname "$nomvm" --memory $vmMem[$nomvm] + Write-Host "Machine $nomvm importée" + } else { + #Importation depuis l'ova + & "$vboxmanage" import "$ovafile" --vsys 0 --vmname "$nomvm" + Write-Host "Machine $nomvm importée" + } } function create_if{ param([string]$nomvm, [string]$nic, [int]$rang, [string]$reseau)