Page 1 of 1
Machine-related packages after upgrade from 1.3 to 1.5
Published: March 19, 2018 - 6:02 PM
by jmeyer
Hello,
After updating the server and clients, I no longer have any active packages on my machines.
Is this normal?
If not, could you tell me what I might have missed?
Sincerely,
Julien
Re: Machine-bound packages after upgrade from 1.3 to 1.5
Published: March 19, 2018 - 6:24 PM
by sfonteneau
Re: Machine-bound packages after upgrade from 1.3 to 1.5
Published: March 21, 2018 - 2:33 PM
by jmeyer
Indeed, I hadn't done things in the right order.
Otherwise, I have many errors of this type (approximately 50 machines out of the 133 reported):
Code: Select all
id;description;summary;start_date;logs;Created by
9;Installation de 0E304DF4-2B3B-1620-0916-094337000000 (=14) (tâche #9);Exception: Erreur lors de l'installation de 0E304DF4-2B3B-1620-0916-094337000000 (=14): erreurs dans les paquets [[u'0E304DF4-2B3B-1620-0916-094337000000 (=14)', PackageEntry('0E304DF4-2B3B-1620-0916-094337000000','14') ]];2018-03-21T14:10:06.048000;"Installing 0E304DF4-2B3B-1620-0916-094337000000
Exception: Erreur lors de l'installation de 0E304DF4-2B3B-1620-0916-094337000000 (=14): erreurs dans les paquets [[u'0E304DF4-2B3B-1620-0916-094337000000 (=14)', PackageEntry('0E304DF4-2B3B-1620-0916-094337000000','14') ]]
Traceback (most recent call last):
File ""C:\wapt\waptservice\waptservice.py"", line 1151, in run
self.running_task.run()
File ""C:\wapt\waptservice\waptservice_common.py"", line 405, in pwrapper
return func(*arg, **kwargs)
File ""C:\wapt\waptservice\waptservice_common.py"", line 464, in run
self._run()
File ""C:\wapt\waptservice\waptservice_common.py"", line 884, in _run
self.result.get('errors',[])))
Exception: Erreur lors de l'installation de 0E304DF4-2B3B-1620-0916-094337000000 (=14): erreurs dans les paquets [[u'0E304DF4-2B3B-1620-0916-094337000000 (=14)', PackageEntry('0E304DF4-2B3B-1620-0916-094337000000','14') ]]
";None
Any ideas?
edit: it seems that WAPT is trying to install Chrome and crashes during installation even though it is not in the list of packages to install.
The script returns the following error:
SyntaxError: Missing parentheses in call to 'print' (line 3988, offset 20): 'print result'
This famous "print" is in setuphelpers.py on line 3988.
Re: Machine-bound packages after upgrade from 1.3 to 1.5
Published: March 21, 2018 - 3:39 PM
by jmeyer
I just had to add Chrome to the list of packages to fix the error.
Thanks for the help.
Re: Machine-bound packages after upgrade from 1.3 to 1.5
Published: March 22, 2018 - 5:44 PM
by dcardon
Hello jmeyer,
jmeyer wrote: ↑March 21, 2018 - 2:33 PM
edit: It seems that WAPT is trying to install Chrome and crashes during installation even though it's not in the list of packages to install.
The script returns the following error:
SyntaxError: Missing parentheses in call to 'print' (line 3988, offset 20): 'print result'
This "print" command is in setuphelpers.py on line 3988.
There was indeed a bug in the `run_powershell` function due to the Python 3 compatibility mode (`from future import print_function`). The bug has been fixed in the master version and will be included in the next WAPT release.
Sincerely,
Denis