Changeset 4188
- Timestamp:
- 02/23/09 23:23:55 (4 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
. (modified) (1 prop)
-
share/umit/config/timeline-settings.conf (modified) (1 diff)
-
umitDB/InventoryChanges.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svnmerge-integrated changed from /branch/InterfaceEditor:1-4032 /branch/NetworkInventory:1-3849,3851-3864,3876-3919,3921-3948,3953-3955,3957-4127 /branch/UmitPlugins:1-2993,2997-2998,3008,3010-3011,3013-3015,3029-3031,3034-3073,3077-3086,3088,3091-3092,3098-3100,3105-3108,3110,3112,3120-3125,3128,3130-3131,3133,3135-3141,3143-3151,3153-3232,3234-3789,3792-4112 to /branch/InterfaceEditor:1-4032 /branch/NetworkInventory:1-3849,3851-3864,3876-3919,3921-3948,3953-3955,3957-4187 /branch/UmitPlugins:1-2993,2997-2998,3008,3010-3011,3013-3015,3029-3031,3034-3073,3077-3086,3088,3091-3092,3098-3100,3105-3108,3110,3112,3120-3125,3128,3130-3131,3133,3135-3141,3143-3151,3153-3232,3234-3789,3792-4112
-
trunk/share/umit/config/timeline-settings.conf
r3953 r4188 18 18 [Startup] 19 19 date = 20 mode = hourly20 mode = daily 21 21 kind = category 22 22 -
trunk/umitDB/InventoryChanges.py
r4097 r4188 140 140 pcdata2 = self.invdb.get_portid_and_fks_for_host_from_db( 141 141 hostB[1]) 142 142 143 143 # compare old data against new data 144 144 category, diff_text = self._compare_data(pdata2, fpinfo2, … … 259 259 # dont consider uptime and lastboot in fingerprint (will probably 260 260 # not consider others too) 261 if fpinfo1 and (fpinfo1[2:] != fpinfo2[2:]): 261 if (fpinfo1 and not fpinfo2) or (not fpinfo1 and fpinfo2) or \ 262 (fpinfo1 and fpinfo2 and fpinfo1[2:] != fpinfo2[2:]): 262 263 space = host_diff and ' ' or '' 263 264 common_text = space + _("Fingerprint, ") … … 284 285 fp_only = False 285 286 ports_only = False 286 287 287 288 if common_text: 288 289 if fp_only or len(common_text) == len(" Fingerprint, "): … … 304 305 # changes in extraports for example. 305 306 affected = 'nothing' 306 host_diff = _("No noticeables changes since last sucessful lscan.")307 host_diff = _("No noticeables changes since last sucessful scan.") 307 308 308 309
