Welcome to OCS Inventory NG community support, where you can ask questions and receive answers from other members of the community.

Please ask questions only in English or French.

Release 2.11.1 available

The official documentation can be found on http://wiki.ocsinventory-ng.org. Read it before asking your question.

how to stop package download which was notified

Hy, i have a client computer which has status notified , but the client was not able to download the file because the package detected as a virus (it is just an eicar test virus). So i decided to remove the client from package notified on server side. But the client tries to download the package again and again.

Is there a retry count for "bad" packages .. or does the client with ocs agent 2.05 does this until the end of the days?

I do not want to remove something on the client download folder

Kind regards

Sokatra
in OCS Inventory NG agent for Unix by (22.6k points)

3 Answers

0 votes
May be remove the corresponding row in table 'download_enable' ?

When agent reach server, the server don't indicate 'there is a package to download' !
by (19.2k points)
0 votes
i i did not found the computer specific "corresponding" row . I ended up in deleting the download folder on the client.

But the problem is .. you never know if i client has this problem with a file. I only know that this client has problem because the antivirus warns me every hour.

If i have time i am investigating this a little bit more.
by (22.6k points)
+1 vote

Yes 'the corresponding row', I understand it's was too short (and also incorrect) ... My analysis :

About package deploiement, you create a package and a row is created in table 'download_available', index 'file_id' is a timestamp = epoch time (number of seconds from 1970/1/1 0:0:0).

Then you activate the package and a row is created in table 'download_enable', the index is 'id' an autoincrement and you have a link with field 'file_id'.

When you affect the package to a hardware, a row is created in table 'devices' (curious name of table !!) : you have 5 fields :

- hardware_id : link to (table) hardware

- name : mostly 'DOWNLOAD'

- ivalue : link to table 'download_enable' field 'id' (not directly the timestamp)

- tvalue : the result or actual status (SUCCESS, NOTIFIED, ERR_xxx,  ...) or null

- comments : when success the date of success

When tvalue is null, that's mean the package is affected but agent is not NOTIFIED. When tvalue is NOTIFIED, that's mean the agent know it have to download the package.

Using this analysis, you are able to 'un-affect' a package for a hardware known : the row to remove is in table 'devices' ...

by (19.2k points)
edited by
 
Powered by Question2Answer
...