Page 1 of 1
[SOLVED] Dell BIOS installation error
Published: April 16, 2018 - 11:22 AM
by ryoken95
Hello,
I'd like to update the BIOS on the PCs in our network.
The BIOS update seems to go smoothly, but I'm getting the following errors: `
installing vjf-bios_3010_a19
CalledProcessErrorOutput: Command '"BIOS_3010_A19.exe" /S' returned non-zero exit status 3.
Output:
EWaptUnavailablePackage: Missing dependencies: vjf-bios_3010_a19`.
Could you please help me clear these errors?
Have a good day.
Re: Error during Dell BIOS installation
Published: April 16, 2018 - 3:31 PM
by dcardon
Hello Ryoken95,
ryoken95 wrote: ↑Apr 16, 2018 - 11:22 AM
I want to update the BIOS of the PCs in our network.
The BIOS update goes smoothly, but I get the following errors:
installing vjf-bios_3010_a19
CalledProcessErrorOutput: Command '"BIOS_3010_A19.exe" /S' returned non-zero exit status 3.
Output:
EWaptUnavailablePackage: Missing dependencies: vjf-bios_3010_a19
Can you please help me eliminate these errors?
My crystal ball is broken. Could you post the control file and the setup.py file so we can get a clearer picture?
THANKS,
Denis
Re: Error during Dell BIOS installation
Published: April 16, 2018 - 3:59 PM
by ryoken95
Good morning,
Below is a copy of the setup
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
def install():
print('installing vjf-bios_390')
install_exe_if_needed("BIOS_390_A11.exe",'/s',key='',min_version='a.11.0')
the control file
Code: Select all
package : vjf-bios_390
version : 1.0.0-4
architecture : all
section : base
priority : optional
maintainer : deploiement_pc_villejuif
description : bios_390_a11
Re: Error during Dell BIOS installation
Published: April 16, 2018 - 4:50 PM
by dcardon
Hello ryoken95,
ryoken95 wrote: ↑Apr 16, 2018 - 11:22 AM
I want to update the BIOS of the PCs in our network.
The BIOS update goes smoothly, but I get the following errors:
installing vjf-bios_3010_a19
CalledProcessErrorOutput: Command '"BIOS_3010_A19.exe" /S' returned non-zero exit status 3.
Output:
By default, the install_exe_if_needed() function accepts return codes 0 and 3010. If the return code 3 (which is not standard) still means that everything went well, then it must be added as a parameter to the function, see.
https://www.wapt.fr/en/doc-1.5/Creation ... -if-needed
ryoken95 wrote: ↑Apr 16, 2018 - 11:22
EWaptUnavailablePackage: Missing dependencies: vjf-bios_3010_a19
The second error message doesn't seem to be related to the other package because the two package names are different. Could there be two dependent packages for the BIOS update on the machine in question?
Sincerely,
Denis
Re: Error during Dell BIOS installation
Published: April 17, 2018 - 11:43 AM
by ryoken95
Hello,
thank you for your help. I'll look into it and get back to you.
Have a good day.