diff --git a/pandora_agents/unix/ChangeLog b/pandora_agents/unix/ChangeLog index 7e47de7e35..299fbbc708 100644 --- a/pandora_agents/unix/ChangeLog +++ b/pandora_agents/unix/ChangeLog @@ -1,3 +1,7 @@ +2014-03-13 Mario Pulido + + * plugins/inventory: Distributions compatibility + 2014-02-03 Mario Pulido * SunOS/make_solaris_package/README: Update compatible SunOS versions diff --git a/pandora_agents/unix/plugins/inventory b/pandora_agents/unix/plugins/inventory index 90c588359c..3a32366be6 100755 --- a/pandora_agents/unix/plugins/inventory +++ b/pandora_agents/unix/plugins/inventory @@ -63,7 +63,7 @@ sub get_module_data ($$$$) { sub get_file_system($$) { my ($name, $modules) = @_; - my @fileSystems = `df -h | tail -n +2`; #remove the titles of columns + my @fileSystems = `df -hP | tail -n +2`; #remove the titles of columns foreach my $row (@fileSystems) { next unless ($row =~ /^(\S+)\s+\S+\s+(\S+)\s+(\S+)\s+\S+\s+(\S+)/);