forked from fusioninventory/fusioninventory-agent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Changes
2112 lines (1933 loc) · 96.6 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Revision history for FusionInventory agent
2.3.15 Tue, 6 Jan 2015
inventory:
* retrieve attached network gateway from default gateway
* do not report 0.0.0.0 as address for non-configured IPMI interfaces
* fix last user retrieval with 32 bit agent on 64 bit Windows
netinventory:
* better firmware retrieval (#2806)
test suite:
* fix Perl version check for POE tests
* force IPv4 for connection tests
2.3.14 Mon, 15 Dec 2014
core:
* fix ESX and Deploy task execution from server request (#2809, #2820, #2823)
* manage PID file explicitely (#2796)
* make PID file location configurable, through --pidfile option (warning:
default location is now in agent state directory)
netdiscovery:
* add a few H3C/HP models in sysobject.ids (#2812)
netdiscovery:
* fix fast interface speed computation (#2833)
install:
* add versioned dependencies on IO::Socket::SSL and Thread::Queue
2.3.13 Thu, 6 Nov 2014
core:
* log HTTP replies status
* log agent stop event (#61)
* better logging of task initialisation process
* fix syslog logger usage with debug level >= 2 (#2780)
* fix SNMPv1 multiple values queries
netdiscovery:
* skip SNMP scan immediatly if there is no answer from remote host
* send task termination message to server when shutting down (#185)
* thread usage cleanup
netinventory:
* propagate error messages to server
* fix null-character presence in XML output (#2670,#2746,#2754,#2784)
* fix WWN physical address parsing (#2759)
* send task termination message to server when shutting down (#185)
* thread usage cleanup
inventory:
* add support for FibreChannel controller on Linux (#2759)
* fix HyperV machines enumeration (#2141)
* fix typo in printer property name on Windows (#2782)
* fix wrong function call on BSD i386 (#2797)
* fix wrong function call on Solaris (#2799)
* fix parsing of psrinfo -vp output on Solaris (#2798)
test suite:
* disable tests requiring POE under perl 5.8
2.3.12 Mon, 06 Oct 2014
core:
* drop Socket::GetAddrInfo usage, and use Socket directly for name to address
resolution
inventory:
* fix networks interface enumeration on Windows XP (#2733)
* fix BIOS date format error on Solaris (#2735)
* retrieve OS minor version on Solaris (#2736)
* identify dockers containers (#2731)
* fix adobe license key format (RT #99164)
2.3.11.1 Wed, 25 Sep 2014
core:
* update MANIFEST to fix missing files
2.3.11 Wed, 25 Sep 2014
core:
* additional distribution metadata
* more flexible message filtering in logger
inventory:
* additional exclusion categories
* more detailed log message for inventory execution
* utf8 encoding fixes for local users and groups on Windows
* fix mac address retrieval for bonded addresses on Linux (#2622)
* fix network interface type identification on Windows
* add network interface type on BSD and Linux (#1838,#2622)
* add WIFI info for network interfaces on BSD and Linux ()
* identify interfaces aliases on Linux (#2622)
* add PCIID for network interfaces and video cards
* better Xorg log file parsing on Linux
* fix disk size computation on Linux (#2718)
* prevent abusive /etc/blkid.tab update on Linux
* ignore whitespace-only disk serial numbers on Windows (#2665)
* fix architecture identification on Solaris (#2672)
* add publisher for dpkg-based distribution on Linux
netinventory:
* drop consumables database in favor of standard consumable identification data
* no more arbitrary consumables number limit
* report unknown and approximate consumable level values as such
* fix negative consumable level values
* report multiple IP addresses associated with each port (#1421)
* report aggregated network ports (#2179,#2564,#2575)
* log sysdescr lookup in devices database
* additional Hischmann and Fortinet devices IDs (#2631)
2.3.10.1 Mon, 04 Aug 2014
inventory:
* fix regression introduced in 2.3.10 wrt hostname on Windows (#2647)
* fix regression introduced in 2.3.10 wrt last logged user on Windows
* provide error messages for name to resolution failures
netdiscovery and netinventory:
* avoid crash for missing logger with command-line tools
2.3.10 Wed, 30 Jul 2014
inventory:
* fix serial key retrieval regression on Windows (#2632,#2641)
* fix office 32bits serial retrieval on 64bits Windows (#2616)
* fix duplicate network interface on AIX (#2527)
* fix warnings for non-parsable etime on Unix (#2636)
* fix global zone identification on Solaris (#2620)
* fix software retrieval on recent BSDs (#2637)
* better file system types identification on Solaris
* add support for HyperV machines enumeration (#2141)
* add support for LXC container identification (#2311)
* add --scan-profiles option to fusioninventory-inventory (#2625)
netdiscovery:
* fix nmap parameters computation (#2618)
* better device identification (#2601, #2194)
netinventory:
* fix invalid character presence in XML output
* add support for Extreme Discovery Protocol (EDP)
* better handling of CDP implementation differences
* better handling of multiple discovery protocols
2.3.9.1 Tue, 15 Jul 2014
install:
* fix sysobjectid and consumables databases files installation
2.3.9 Tue, 15 Jul 2014
core:
* disable lower-level SSL checks when no-ssl-checks is used
netinventory and netdiscovery tasks:
* merge all files from sysobjectid database into a single one
* update sysobjectid database
netdiscovery task:
* catch more SNMPv3 authentication errors
* allow multiple SNMP credentials for netdiscovery executable
netinventory task:
* better printer consumable identification, using vendor references
(#2581,#2582,#2583,#2584,#2587,#2589,#2591,#2592,#2593,#2594)
* externalize consumable ids in a data file
* report 0% level instead of 100% for wastetoners with OK status (#2593)
* skip problematic address only for non-existing interfaces (#2599)
* mark --model option as deprecated for netinventory executable
inventory task:
* disable user profile scanning for software by default on Windows (#2555)
* avoid fatal dmidecode usage on Windows 2003 for CPUs (#2562)
* fix last loggued user identification on Windows (#2553)
* fix product key decoding on Windows 8 (#2544)
* fix IE 10+ version retrieval on Windows (#2528)
* more details for USB devices on Windows (#2598)
* get OS UUID for SPARC on Solaris (#2539)
* add Xen Citrix server VM support (#2529)
2.3.8 Sun, 11 May 2014
netinventory task:
* add support for trunk port identification on non-cisco hardware (#2386)
* add VENDOR element, and keep MANUFACTURER bound to original manufacturer
* add H3C hardware database
* better error messages for non-existing interfaces
inventory task:
* fix multiple crashes introduced by command logging
* fix crash in Windows License module when office is not installed (#2202)
* fix last loggued user retrieval on Windows (#2458)
* fix 32bits software in user environment retrieval on Windows 64bits
test suite:
* transfer hardware tests in private hardware repository
2.3.7.1 Wed, 30 Apr 2014
inventory task:
* fix crash introduced by command logging on BSD hosts
2.3.7 Tue, 29 Apr 2014
install:
* do not rely on GNU install specific options
netinventory and netdiscovery tasks:
* drop support for SNMP dictionary
* drop support for SNMP models
* large code cleanup
* enhance firmware and serial number retrieval
* update extreme networks models database
inventory task:
* fix multiple warnings for missing commands (#2460)
* fix 'broken pipe' error messages on Solaris (#2460)
* fix warnings for NIS/NIS+ external references in /etc/passwd (#2460)
* log executed commands with debug level >= 2
* fix a crash in Windows storage inventory (#2471)
* fix process inventory on AIX (#2481)
* fix firmware version retrieval on AIX (#2480)
* fix mac address extraction for infiniband interfaces (#2432)
* fix CPU identification on newer ARM kernels (#2485)
* fix inconsistencies in process runtime computation (#2491)
test suite:
* ship missing LXC test file (#2483)
2.3.6 Mon, 10 Mar 2014
core:
* abort with explicit error message when there is
no available task
* when receiving a push request from a server, reschedule
contact for this server only
inventory task:
* fix a warning with LXC 1.0.x
netinventory task:
* fix SNMPv3 credentials handling
* fix mac address retrieval on non-default VLANs
* fix LLDP info retrieval for some hardware
* fix memory exhaustion for some hardware (#2414)
* use get-next-requests instead of get-bulk-requests, slower but safer,
especially with large gaps in indexes
netdiscovery task:
* fix SNMPv3 credentials handling
* do not report errors for non-responding host with SNMPv3
wake-on-lan task
* honour all mac addresses from server request (#2353)
test suite:
* fix network interface test on Solaris (#2438)
2.3.5.1 Tue, 14 Jan 2014
inventory task:
* fix AIX LVM regression introduced by incorrect fix (#2384)
* fix another potential warning on AIX
2.3.5 Tue, 14 Jan 2014
netinventory task:
* add more default OIDs for mappings undefined in SNMP model
* fallback on default OID if SNMP model mapping doesn't bring any result
* restore and enhance mac adressses extraction for connected devices on
non-default VLANs
* fix trunk port identification
* fix model loading with fusioninventory-netinventory
inventory task:
* get size for Adaptec RAID controller disks on Linux (#2360)
* fix size reporting for LSI RAID controller disks on Linux
* add support for modern MegaRAID controllers on Linux (#2361)
* better identification for hard disk manufacturers (#2362)
* fix timeout for user enumeration in AD environment on Windows (#2201)
* fix a potential crash in software inventory on Windows
* cleanup whitespace for DMI and /proc values (#2391)
* fix multiple potential warnings on AIX (#2384)
test suite:
* fix test files list (#2394)
* fix network interface enumeration test on Solaris (#2346)
2.3.4 Fri, 29 Nov 2013
netdiscovery task:
* install missing sysobjectid database files
* add additional device types (phones, storage, etc...) support
netinventory task:
* add default OIDs for mappings undefined in SNMP model
* add IFALIAS support for interfaces
* allow SNMPv3 usage from fusioninventory-netinventory
* allow discovery without model from fusioninventory-netinventory
netinventory and netdiscovery tasks:
* fix infinite recursion in mac address canonicalisation, leading to memory
exhaustion (#2336)
* fix SNMPv3 usage without optional parameters
linux:
* OpenVZ: disable the Virtuozzo module if libvirt is already plugged on OpenVZ
2.3.3 Wed, 06 Nov 2013
core
* clean up in the distribution, thanks Olivier Mengué <[email protected]>
inventory task
* fix missing 32bits software on 64bits windows (#2212)
netinventory task
* fix SNMP reconnection when issuing VLAN-specific queries on some Cisco
devices (#2178)
* use longer default SNMP timeout, and make them configurable
* handle MAC addresses with embedded VLAN identifier
netdiscovery task
* backport device model identification from sysobjectid value
2.3.2 Fri, 20 Sep 2013
core
* avoid some warning messages
netinventory task
* fix: properly pass the SNMP credentials
* better handling of mac addresses
2.3.1 Mon, 09 Sep 2013
inventory task
* report when running in a BSD Jail or a LXC system, thanks Igor Morozov
* better strategy for extracting USB printer serial on windows (#2213)
* force lowercase identifiers for USB and PCI lookups (#2122)
netdiscovery task
* fix invalid log message and spurious warnings during discovery (#2200)
* fix dictionary update handling, breaking fusioninventory-netdiscovery usage
* use sysobjectid for better identification
* more sysdescr-based identification rules
* fix loss of information when applying sysdescr-based identification rules
* normalize sysdescr better before dictionary lookup
netinventory task
* ensure device type is set in agent answer
* emits warnings when retrieved values are obviously wrong
* better handling of mac addresses
* large code cleanup and optimisation
wake-on-lan task
* fix wrong mac address pattern check
2.3.0 Thu, 01 Aug 2013
distribution:
* Deploy, Network and ESX tasks are now integrated in the distribution
* new fusioninventory-inventory executable, dedicated to inventory task
core:
* no more thread usage for HTTP interface
* no more token usage for HTTP interface, request source address is enough
* --httpd-trust option now allows multiple values
* --daemon and --no-fork options are now available from command-line only
inventory task:
* add DNS_DOMAIN, BOOT_TIME and FQDN in OPERATINGSYSTEM section (#1197, #1347, #1358)
* collect public SSH keys
* collect local users and groups (#1570, #1870)
* collect license key for MS Office on Windows (#152)
* collect software from user profile on Windows(#1674)
* collect license key for Adobe suite, Panic's Transit, VMware Fusion on MacOs
* collect service package version on AIX (#1896)
* collect manufacturer information for memories (#1735)
* enforce consistent handling of USB and PCI identifiers (#1861)
* enforce consistent TYPE values for network interfaces (#1838)
* various UTF8 encoding fixes
* better stripping of bogus values
* Megaraid and 3ware RAID controller support on BSD (Egor Morozov)
* Megaraid controller support on Linux (Egor Morozov)
* support new OpenVZ configuration on Linux (Alessandro Iurlano)
* LPAR support on AIX (#950, #952)
* FreeBSD jail support on BSD (#736, #1555)
* better caching of system_profiler output (#2076)
* better Qemu support (#2106)
* better OpenVM support (#1774)
* better HyperV support (#1989, #1990, #1991)
* fix CPU inventory for non-i386 arches on Linux (#2172)
* better CPU inventory on Solaris (#1741, #1905, #2152)
* better memory inventory on Solaris (#1711, #1714, #1737)
* better slot inventory on Solaris (#1730)
* fix VXFS filesystem identification on Solaris (#1696)
* minimal support for busybox-specific command output (#1372)
* no more memconf usage on Solaris
* no more Mac::SysProfile usage on MacOS (#1646)
wake-on-lan task:
* ethernet and udp methods support on all systems
netdiscovery task:
* fix for regression introduced during code refactoring regarding printers
identification
test suite:
* check the link for 404 error in the doc
* check for warnings generated during parsing
* check entries generated from parsing match expected inventory format
* normalize list before comparaison, for perl 5.18 hash randomisation
2.2.8 unreleased
AIX:
* minor fixes in LVM support
2.2.7 Tue, 13 Nov 2012
General:
* additional hack for LG screens (#1848)
* additional model for ACER screens hack (#1840)
* fix directory creation error handling with older File::Path versions (#1817)
* fix initial delay randomness (#1809)
* fix spurious null character in decoded strings (#1837)
Windows:
* fix missing bios release information on some machines (#1820, #1825)
2.2.6 Fri, 14 Sep 2012
Installation:
* fix installation with older MakeMaker versions
* do not generate html version of man pages
* minor fixes to dependencies list
General:
* better fix for size parsing with HP RAID controllers, avoiding warnings
(#1807)
* implement model-specific hack for ACER screens serials (#1607)
Linux:
* fix parsing of newer ifconfig output, such as used on Fedora 17
2.2.5 Thu, 16 Aug 2012
General:
* Fix: deal with broken last_state file
* Fix: fix HP RAID size parsing
* Fix: virtual machine inventory with VMware desktop
* Fix: add /usr/local/{bin,sbin} in default $PATH
Windows:
* Fix: do not run dmidecode.exe on Win2003
* Fix: software inventory
Solaris:
* Fix: improve ZFS support
* Fix: get memory on solaris on Sun-Fire-V490
HP-UX:
* Fix: variou syntax issues (Drives, Uptime, etc)
* Fix: get network interfaces from netstat -nrv
* Fix: import VXFS 7 volumes
Test suite:
* Add an AIX slot test
* Deals properly with disabled thread support
* use the first available TCP port for network tests
* Enable SSL test even in IPv6 environment
2.2.4 Sun, 22 Jul 2012
General:
* Fix: non blocking flock() on log file
MacOSX:
* Fix: STORAGES uses MiB instead GB
* Fix: add Fiber Channel storage support
* Fix: Don't ignore second screen, if both have the same name
Linux:
* Fix: collect qemu -drive information (Alexander Evseev)
Windows:
* Fix: OCS Inventory registry support
* Fix: some time the softwares were not collected
Solaris:
* Fix: Collect ZFS drives properly
2.2.3 Mon, 25 Jun 2012
General:
* Fix battery voltage and capacity retrieval
* Add --timeout option
MacOSX:
* Fix global memory and CPU inventory
* Fix drives inventory
Linux:
* LXC support (Egor Morozov)
2.2.2 Wed, 30 May 2012
General:
* Improve README
* Fix Screen.pm syntax error
* Add a test_requires dependency on LWP::Protocol::https
Windows:
* fix command execution
7ff3260 fix warning if getDevicesFromUdev returns nothing
Linux:
* detect Virtuozzo VM (Alexander Evseev)
2.2.1 Thu, 24 May 2012
General:
* failure encoding with UTF8 content when using Fusion protocol (#1663)
* wrong CSS path (#1580)
* missing test suite dependency (#1575)
* improve CPU details (#1597)
* --no-category process support (#1630)
* replace IS64BIT software property with more general ARCH property (#1581)
* sync EDID parsing code with mandriva
* more EDID manufacturer codes
Windows:
* various encoding issues (#1550)
* network addresses collecting failure (#1549)
* inventory all the KB on Win Vista/7 (#1668, #197, #706)
* Store the XML file with the local codepage (#272)
Virtualization:
* wrong character in Xen machine ID (#1562)
* additional disk emulation types for qemu and kvm support (#1630)
BSD:
* multiple network addresses per interface support (#1565)
Solaris:
* no swap/memory informations for unknown hardware (#1594)
* solaris container zone bug (#1586)
* sparc T3-1 CPU support (#1583)
* solaris 8/9/10 swap bug (#1577)
Linux:
* bad name for physical volumes (#1587)
* missing volume group ID (#1585)
* wrong volume group ID (#1584)
* duplicate volume groups (#1582)
* fix Lsilogic raid controller support (#1630)
* get device name from udev file content, not file name (#1630)
* get more disk informations from smartctl (#1630)
* sparc arch mismatch (#1573)
* read EDID data directly from /sys when available
2.2.0 Sat, 07 Apr 2012
Major changes:
* large speed improvement: up to 150% for a local inventory
* better multitasking support:
- the agent use fork() to run task if needed, instead of running a new process
from scratch, avoiding the need to use a temporary file to transmit
parameters, with related security risks
- the agent only forks to run a tasks when running as a server, making tracing
and debugging easier
- the agent only use one thread for the web interface
* better SSL support:
- IO::Socket::SSL perl module is now required for certificate validation
- Crypt::SSLeay perl module still allow HTTPS support, but without
certificate validation, and the connection will be aborted unless
certificate checking is disabled
- validation is now performed by SSL library, and honours alternative subject
names, and other subtilities
* large cleanup of values returned from inventory:
- unknown values are filtered out
- strings are trimmed for trailing spaces
- irrelevant values, such as windows internal USB serial number, or
controllers type and manufacturer on AIX and HPUX, are filtered out
* installation procedure automatically setup configuration and data directories
locations in executable, there is no need to manually configure them anymore
* removal of useless features:
- support for OCS account info have been dropped, the agent doesn't store
arbitrary informations locally anymore
- support for OCS network discovery and software deployment features within
inventory task have been removed, we have better alternatives
- useless Ping task has been dropped
* cleanup of available options:
- deprecated --nosoft and --nosoftware options have been removed
- --devlib, --share-dir, --basevardir and --realm options have been
deprecated, as their values are now computed automatically at installation
- --daemon-no-fork option has been deprecated, and replaced by --daemon
--no-fork options
- --info option has been deprecated, as it had no effect
- --rpc-trust-localhost option has been deprecated, in favor of a more
generic --http-trust option, allowing an arbitrary IP adresse or range
- --debug option can be specified multiple times, for additional verbosity
- --no-inventory, --no-ocsdeploy, --no-snmpquery, --no-netdiscovery options
have been deprecated in favor of a generic --no-task option
- --no-software, --no-printer options have been deprecated in favor of a
generic --no-category option, and 'environment' value support has been added
* new --config option allows to select configuration backend, allowing to use
file configuration if needed under windows, or to ignore any external
configuration
* fusioninventory-agent-config executable has been dropped, in favor of better
documentation
* documentation has been reviewed for consistency in various places where it
appears (--help output, man page, configuration file)
* XML::TreePP perl module is now used instead of XML::Simple, reducing native
perl modules dependencies
* OcsDeploy task is now deprecated. Please continue to use the 2.1.x agent is
you need it.
Minor changes:
* Add the HARDWARE/CHASSIS_TYPE information
* Linux: report all IP addresses used by each interfaces (#854)
* HPUX: don't report unoccupied memory slots
* AIX: add LVM support
2.1.14 Wed, 22 Feb 2012
LINUX
✔ Detected OS is "RedHat" for CentOS servers if lsb_release not available
commit:d3a252
http://forge.fusioninventory.org/issues/1193
thanks: Jonathan Clarke
MACOSX
✔ no-software option doesn't work as advertised
commit:18dfaf
http://forge.fusioninventory.org/issues/1476
thanks: Ronan Mejecaze
✔ syntax error in Video module
thanks: Walid Nouh
WINDOWS
✔ No 2007 Microsoft Office system into XML
commit:39f3c7
http://forge.fusioninventory.org/issues/1065
thanks: Walid Nouh, Xavier Caillaud, jerome slayer
✔ On Windows Vista Office 2007 is not correctly gathered
commit:39f3c7
http://forge.fusioninventory.org/issues/1425
thanks: Walid Nouh, Xavier Caillaud
✔ VM System incorrect
commit:259996
http://forge.fusioninventory.org/issues/1436
thanks: Mario Gzuk
✔ Inventory Internet Explorer when it's not present in Add/remove programs
commit:39f3c7
http://forge.fusioninventory.org/issues/1441
thanks: Walid Nouh, Xavier Caillaud, jerome slayer
2.1.13 Wed, 14 Dec 2011
TEST-SUITE
✔ 2.1.10 Test suite fails
commit:8035bd
http://forge.fusioninventory.org/issues/1161
thanks: Remi Collet
WINDOWS
✔ VM System incorrect
commit:b59a09
http://forge.fusioninventory.org/issues/1391
thanks: Mario Gzuk
✔ Fix the CPU detection on Windows
thanks: Anthony Facchin
2.1.12 Wed, 23 Nov 2011
GENERIC
✔ Memory: Add ECC / no ECC information
commit:b01f6f
http://forge.fusioninventory.org/issues/1234
thanks: Walid Nouh, jerome slayer
LINUX
✔ Duplication virtualmachine name on the same machine
commit:982c08
http://forge.fusioninventory.org/issues/1140
thanks: DuyLong LE
WINDOWS
✔ [windows] Virtual network adapter reported as physical - and breaks all computer linking in GLPI
commit:5b4a1e
http://forge.fusioninventory.org/issues/1166
thanks: David Durieux, V'yacheslav Stetskevych
✔ use $ENV{COMPUTERNAME} is HARDWARE/NAME is empty
commit:44c07b
http://forge.fusioninventory.org/issues/1330
✔ 2.1.11 - Total amount of total RAM memory incorrectly detected on some Windows 7 computers
commit:f93d24
http://forge.fusioninventory.org/issues/1334
thanks: Tomás Abad, Andre Silva
✔ Dual screen configuration ignored on Windows Vista/7
commit:6cbf8b
http://forge.fusioninventory.org/issues/1351
SOLARIS
✔ Fix some warnings for spurious stat() calls
✔ Fix hostname being forced to 'SOLARIS'
2.1.11 Mon, 12 Sep 2011
WINDOWS
✔ Fix the BIOS information collect on Win2003 <= system
commit:8c2427da5, commit: fe345815
http://forge.fusioninventory.org/issues/1156
2.1.10 Tue, 06 Sep 2011
✔ Model and SSN don't correct
commit:7bb7b1
http://forge.fusioninventory.org/issues/1061
thanks: DuyLong LE
INTERNAL
✔ Report Linux distribution version number
commit:c7e958
http://forge.fusioninventory.org/issues/1066
thanks: Guillaume Rousse, Jonathan Clarke
✔ incorrect FSF postal address
commit:190a04
http://forge.fusioninventory.org/issues/965
thanks: Remi Collet
✔ Incorrect test for LWP version
commit:ebd880
http://forge.fusioninventory.org/issues/994
thanks: Guillaume Rousse
LINUX
✔ Use of uninitialized value in pattern match on CPU.pm
commit:ba5ee3
http://forge.fusioninventory.org/issues/1068
thanks: DuyLong LE
SOLARIS
✔ Can't get network interface
commit:c54339
http://forge.fusioninventory.org/issues/1056
thanks: DuyLong LE
✔ Agent segfault on Opensolaris when trying to send an inventory using https
commit:fcfb8a
http://forge.fusioninventory.org/issues/332
thanks: Walid Nouh
TEST-SUITE
✔ FusionInventory::Agent::RPC build fails is no JSON
commit:914cb5
http://forge.fusioninventory.org/issues/955
✔ New build-deps: Test::Exception, HTTP::Server::Simple::CGI,
HTTP::Server::Simple::Authen
WINDOWS
✔ use BIOS/MMODEL instead of BIOS/SMODEL on Win32 <= 2003
commit:0b5ce8
http://forge.fusioninventory.org/issues/1139
✔ keyboard with same serial added twice in connected items
commit:ce7244
http://forge.fusioninventory.org/issues/788
thanks: David Durieux, Fabrice Flore-Thebault, jerome slayer
2.1.9 Tue, 14 Jun 2011
HPUX
✔ HARDWARE/MEMORY missing on HPUX PA-RISC 11.11
commit:262392
http://forge.fusioninventory.org/issues/737
thanks: Amir Pakdel, yanick durant
✔ machinfo on HP-UX 11.31 ia64 (tukwila chip) reports differently - breaks Fusioninventory CPU reporting
commit:0a9037
http://forge.fusioninventory.org/issues/757
thanks: Earl Flack
✔ HP-UX: typo in CPU name
commit:050ead
http://forge.fusioninventory.org/issues/760
✔ Serial and bios informations are missing on 11.31
commit:2e5608
http://forge.fusioninventory.org/issues/761
thanks: yanick durant
✔ HPUX Superdome CPU not correctly identified
commit:0a9037
http://forge.fusioninventory.org/issues/767
thanks: yanick durant
✔ HPUX: Error in execution of fsdb in Drive.pm
commit:9d1045
http://forge.fusioninventory.org/issues/773
thanks: yanick durant
✔ should we use fsdb on HP-UX to get the FS creation date?
commit:39cd5a commit:ecd475
http://forge.fusioninventory.org/issues/778
thanks: Guillaume Rousse, Amir Pakdel
INTERNAL
✔ Change message "Force run now"
commit:03c651
http://forge.fusioninventory.org/issues/535
thanks: Walid Nouh
✔ RPC: do not regenerate a token if RPC request come from local loopback
commit:96915c
http://forge.fusioninventory.org/issues/730
✔ regression if --rpc-trust-localhost --scan-homedirs have no argument
commit:d9a436
http://forge.fusioninventory.org/issues/741
✔ Agent should follow HTTP err 301 redirection
commit:7f61f3
http://forge.fusioninventory.org/issues/776
✔ on linux, type of computer not reported
commit:d01560
http://forge.fusioninventory.org/issues/791
thanks: Fabrice Flore-Thebault
✔ use full name key for LVM inventory
commit:75bb13
http://forge.fusioninventory.org/issues/863
✔ missing RPC port in the agent log
commit:504d53
http://forge.fusioninventory.org/issues/870
✔ LWP 6 support
commit:5953dc
http://forge.fusioninventory.org/issues/878
✔ add Hyper-V virtual machine detection
commit:9152c7
http://forge.fusioninventory.org/issues/910
✔ set TAG in local mode
commit:000fcb
http://forge.fusioninventory.org/issues/946
LINUX
✔ rhn inventory
commit:e13d10
http://forge.fusioninventory.org/issues/713
thanks: Remi Collet
✔ HP DL servers - Harddisk
commit:caa030
http://forge.fusioninventory.org/issues/768
thanks: Amir Pakdel, Walery Wysotsky
✔ Add Linux LVM support
commit:5f861e commit:0a3aa5 commit:9e6d79
http://forge.fusioninventory.org/issues/802
thanks: Sébastien Dagnicourt
✔ Vmware desktop virtual machines not detected on Linux
commit:88b545
http://forge.fusioninventory.org/issues/808
thanks: Walid Nouh
✔ With newer gentoolkit software query is failing
commit:a07afd
http://forge.fusioninventory.org/issues/852
thanks: Guillaume Rousse, İbrahim Özgür Erişen
MACOSX
✔ Software installed on parallel virtual guest listed in physical host inventory
commit:69ffe5
http://forge.fusioninventory.org/issues/716
thanks: Guillaume Rousse
✔ Error during Vmware Fusion inventort on Mac OS X
commit:3eecb1
http://forge.fusioninventory.org/issues/762
thanks: Walid Nouh
✔ Error running Parallels Desktop on Mac OS X
commit:4ec184
http://forge.fusioninventory.org/issues/763
thanks: Walid Nouh
✔ Improve Parallels Desktop support
commit:823aec
http://forge.fusioninventory.org/issues/769
thanks: Walid Nouh
✔ Fix MONITORS/VIDEOS detection on MacOSX
commit:974fd8
http://forge.fusioninventory.org/issues/936
thanks: Loic Lhermitte
SOLARIS
✔ SolarisZones module ignored in fusioninventory-agent 2.1.8_rc1
commit:9368ea
http://forge.fusioninventory.org/issues/787
thanks: Christian Lete
TEST-SUITE
✔ FusionInventory::Agent::RPC build fails is no JSON
commit:782834
http://forge.fusioninventory.org/issues/955
thanks: Remi Collet
WINDOWS
✔ The agent still conflicts with Oracle Perl
commit:a63eba commit:1d18c6 commit:4afe98
http://forge.fusioninventory.org/issues/889
thanks: GuruNot
✔ GLPI plugin imports duplicate entries with software from Windows Agent
commit:4553aa
http://forge.fusioninventory.org/issues/927
thanks: David Durieux, Peter Luk
2.1.8 Fri, 25 Mar 2011
* Show a larger part of the string returned by the server in case of
error
* Win32: Decrease the severity of a winkey read error
* add FusionInventory::Agent::Tools::Win32::getValueFromRegistry()
unused for now.
* Win32: getWmiProperties() depends on Win32::OLE, load it first.
* Win32/AntiVirus: avoid pointless OLE error
* Add BNQ screen manufacturer support
https://bugs.launchpad.net/bugs/736095
* scan-homedirs and rpc-trust-localhost don't works in command line
http://forge.fusioninventory.org/issues/636
* Update the Inventory XML documentation
* HPUX: use NAME instead of TYPE to set the CPU name (Yanick Durant)
http://forum.fusioninventory.org/viewtopic.php?id=278
* Document NETWORKS/{BSSID,SSID}
* Add VIRTUALMACHINES/COMMENT and OWNER keys
* VirtualBox: major rewrite of the mostly broken Vbox mod
* add support for the task called «Deploy»
* add support for the task called «ESX»
2.1.8_rc1 Sat, 05 Mar 2011
* Linux, correctly read the number of core from /proc/cpuinfo
* MacOSX: KB unit in missing in Mac OS X Drive.pm
http://forge.fusioninventory.org/issues/521
* FusionInventory::Agent::Task::Base, correctly preinitialize
'myData' by loading the expected file.
* A yum plugin in contrib to trigger FusionInventory after the updates
(Remi COLLET)
* SSL certificat check: Accept wild card in the hostname
http://forge.fusioninventory.org/issues/542
* Linux/CPU: avoid a warning is $serial is undef, thanks Raúl who
pointed the issue
* SSL: try to use the default CA if now --ca-cert-* is avalaible,
thanks Kevin Cousin who suggested the idea
* Inventory must be run after the deployment (OcsDeploy)
* Linux: fix Knoppix version format
* fix month number in process list start date
* Avoid failure if the agent can't load the .dump file, see: #542
thanks Kevin Cousin for the report
* Decrease the severity of the error message when a optional module
is missing
* MacOSX/Drives: do not ignore the / filesystem
* MacOSX/USB: no empty devices
* Win32/Software: avoid a warning
* Networks: improve the error message if deflat fails, thanks Walid Nouh
for the suggestion
* HP-UX/CPU: add a test-suite
* HP-UX/CPU: identify the CPU on HP RX4640, (Yanick Durant)
* HP-UX/Memory: hack to preinitialize the memory map (Yanick Durant)
* t/README.t: only run the test if TEST_AUTHOR=1
* Makefile.PL: add XML::TreePP in test_requires
* RPM: feed the PUBLISHER field (Stéphane Urbanovski)
* MacoSX/Software: Avoid breakage if .app's plist file is corrupted
* Solaris: SUNWCzone is optionnal, use zonename instead (Raphaël SurcouF)
* Inventory: look for backend module in @INC+$archname.'/auto' too, thanks
to Philip Grodzki who helped to point out the issue.
* Inventory: improve POD documentation
* Inventory: Display a debug message if the STORAGES/INTERFACE is invalid
* backport from master FusionInventory::Agent::Tools::getCanonicalManufacturer()
* Linux/CPU rename AuthenticAMD to AMD
* injector: --help show usage menu
* injector: minor clean up in the --help menu
* Add 2011 in the copyright years
* Win32: set HARDWARE/DESCRIPTION
* Tools: move the code used to find .pm in @INC in getFusionInventoryLibdir()
* Linux/Network: set the IPv6 network address (Ludovic Hutin)
* HP-UX/CPU: improve the machinfo parsing, thanks Amir Pakdel for
the machinfo output on HP-UX 11.23
* AIX: collect EMC/Clariion LUN storage (Sébastien Dagnicourt)
* Win32: fix NETWORKS/VIRTUALDEV on OS prior Vista (David DURIEUX)
* Internal: add and use getFusionInventoryLibdir(), getFusionInventoryTaskList()
* Linux/Storage: collect WWN from SAS / SATA disk using hdparm
* Win32/Networks: avoid duplicated IP in HARDWARE/IPADDR, thanks Fernando Lagrange
for the bug report
http://forge.fusioninventory.org/users/603
* Gentoo: fix the regex to collect packages,
https://bugs.launchpad.net/ocsinventory-contact/+bug/720626
* Linux: dhcp-leases file now always detected, mostly on Redhat hosts (Bernhard Denner)
https://bugs.launchpad.net/ocsinventory-unix-agent/+bug/720628
* Win32: retrieve Antivirus information from //./root/SecurityCenter2 on Win7
http://forge.fusioninventory.org/issues/583
* Add VIRTUALMACHINES/MAC key
* Win32: software, do not ignore software with very few information
* Win32: better detection of product key on 64bit system, thanks Ionut Bujor for
the feedbacks http://forge.fusioninventory.org/issues/582
* Drop the Ping task. Was not used.
2.1.7 Sun, 12 Dec 2010
* RPC: Better message if access is denied
* add --no-p2p parameter
http://forge.fusioninventory.org/issues/507
* initialize $config->{'rpc-trust-localhost'} to avoid a warning
with --help
* injector: fix the --help, there is no default server
* fusioninventory-agent, do not load lib with use to be able to change the @INC first.
this is needed for AIX 6.1 prebuilt.
* AIX/CPU: use addCPU() and collect the CORE/THREAD
* AIX/hardware: fix a typo sysplanar0 instead of sysplana00
* AIX/storage: reinitialise temp var correctly
* AIX/storage: store the harddrive serial number
* AIX/storage: use addStroage
* AIX/user: use addUser()
* Big Oops, CPUID != CPU serial number, see:
http://en.wikipedia.org/wiki/CPUID
Revert commit a1c4c665, which is broken because of that:
Win32: try to identify dual core CPU even if Windows thinks it two physical CPU
* Linux/resolution: fix the parsing for Nouveau, than Remi Collet
* Linux: improve the Harddrive detection if lshal is not avalaible,
thanks Bernhard DENNER for the initial patch
https://bugs.launchpad.net/bugs/682689
* No warning if ddcprobe is not avalaible
2.1.7_beta1 Fri, 19 Nov 2010
* replace Cwd::abs_path with File::Spec->rel2abs
abs_path fails if the directory doesn't exist yet. This was breaking
--basevardir on UNIX system.
The problem was fixed on Win32 with the 2.1.5 release. See commit
6f376013c8584145a8f824632f1292b3212bd3ca