refs #273 changes kea conf order execution

ogboot_installer
Luis Gerardo Romero Garcia 2024-05-09 10:21:53 +02:00
parent 2e775b6dc0
commit 03924cd3b2
1 changed files with 7 additions and 7 deletions

View File

@ -829,13 +829,6 @@ pushd $WORKDIR
checkDependencies
install_kea
# Configuración ejemplo DHCP.
keaDhcpConfigure
if [ $? -ne 0 ]; then
errorAndLog "Error while copying your dhcp server files!"
exit 1
fi
# Si es necesario, descarga el repositorio de código en directorio temporal
if [ $REMOTE -eq 1 ]; then
@ -869,6 +862,13 @@ if [ $? -ne 0 ]; then
exit 1
fi
# Configuración ejemplo DHCP.
keaDhcpConfigure
if [ $? -ne 0 ]; then
errorAndLog "Error while copying your dhcp server files!"
exit 1
fi
# Configuración de TFTP.
tftpConfigure