From 90e419fa4c698cf9467b8fe6240f3401e5e9fb16 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Thu, 16 Jan 2025 14:54:03 +0100 Subject: [PATCH] Cpyint predefined questions to install --- vagrant/Vagrantfile-esxi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vagrant/Vagrantfile-esxi b/vagrant/Vagrantfile-esxi index d8a626b..aee6e07 100644 --- a/vagrant/Vagrantfile-esxi +++ b/vagrant/Vagrantfile-esxi @@ -37,7 +37,9 @@ EXTIP=$(ip -o -4 addr show "$INTERFACE" | awk '{print $4}' | cut -d'/' -f1) echo "La dirección IP de la interfaz $INTERFACE es: $EXTIP" export BRANCH=malaga-automated-testing curl -q -k https://ognproject.evlt.uma.es/gitea/api/v1/repos/opengnsys/oginstaller/raw/python-installer/opengnsys_installer.sh?ref=python-installer -o opengnsys_installer.sh -chmod 755 opengnsys_installer.sh +cp /tmp/questions/config* /tmp/oginstall +/tmp/oginstall/component-installer.sh + OEOL Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| @@ -56,7 +58,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end config.vm.box = "esxi_clone/dummy" config.vm.hostname = "og-#{BRANCH_EXTRA}" - config.vm.provision "file" , source: "config/config*", destination: "/tmp/oginstall/" + config.vm.provision "file" , source: "config/config*", destination: "/tmp/questions/" config.vm.provision "shell", inline: OGSERVERSCRIPT end