From 358b5c8d352ed0abd41ce873da3b8d1e27c7eaee Mon Sep 17 00:00:00 2001 From: lgromero Date: Wed, 24 Apr 2024 14:10:39 +0200 Subject: [PATCH] refs #273 #329 #310 removes a missing function --- installer/ogboot_installer.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/installer/ogboot_installer.sh b/installer/ogboot_installer.sh index 2f5f9e8..67330db 100644 --- a/installer/ogboot_installer.sh +++ b/installer/ogboot_installer.sh @@ -56,7 +56,7 @@ function add_tftpboot_files() { generate_ipxe_script() { - # Obtener la dirección IP de eth0 + echo "Generando script IPXE..." ip_address=$(ifconfig eth0 | awk '/inet / {print $2}') cd ogboot ls -lha @@ -142,12 +142,6 @@ if [ $? -ne 0 ]; then exit 1 fi -mount_NFS -if [ $? -ne 0 ]; then - echo "Error en el montaje NFS" - exit 1 -fi - generate_ipxe_script if [ $? -ne 0 ]; then echo "Error en la generación de scripts IPXE"