Changeset 455
- Timestamp:
- 05/21/08 14:29:14
- Arquivos:
-
- cacic/trunk/agente-linux/pycacic/src/ger_cols.py (modified) (3 diffs)
Legenda:
- Não modificado
- Adicionado
- Removido
- Modificado
- Copiado
- Movido
cacic/trunk/agente-linux/pycacic/src/ger_cols.py
r450 r455 21 21 from coletores.col_soft import * 22 22 from coletores.col_patr import * 23 from coletores.col_vamb import * 24 from coletores.col_undi import * 23 25 24 26 from coletores.lib.url import * … … 202 204 elif no.nodeName == 'cs_coleta_software': 203 205 self.addColeta(Col_Soft(self.computador), self.decode(no.firstChild.nodeValue)) 206 self.addColeta(Col_Vamb(self.computador), self.decode(no.firstChild.nodeValue)) 204 207 elif no.nodeName == 'cs_coleta_unid_disc': 205 #self.addColeta(None, self.decode(no.firstChild.nodeValue)) 206 pass 208 self.addColeta(Col_Undi(self.computador), self.decode(no.firstChild.nodeValue)) 207 209 # VERSOES 208 210 elif no.nodeName == 'TE_HASH_PYCACIC': … … 298 300 self.coletor.addChave('Configs.ID_SO', self.computador.getSO()) 299 301 self.coletor.addChave('Configs.Endereco_WS', self.cacic_ws) 300 self.coletor.createDat(self.coletor.dicionario, self.OUTPUT_DAT )302 self.coletor.createDat(self.coletor.dicionario, self.OUTPUT_DAT, 'Coleta.') 301 303 302 304 def toString(self):
