shift / pulledpork

Automatically exported from code.google.com/p/pulledpork
GNU General Public License v2.0
0 stars 0 forks source link

Unowned *.so files placed into snort_dynamicrules/ directory #77

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Configured and ran pulledpork.pl as the root user
2. Did an ls -laFh inside of the snort_dynamicrules/ directory and noticed all 
the *.so files are owned by uid:1210 and gid:1210

What is the expected output? What do you see instead?

That should be expected, technically. However it leaves unowned or improperly 
owned files on the filesystem due to the uid/gid 1210 having ownership of these 
files within the VRT tarball.

What version of the product are you using? On what operating system?

pulledpork = 0.6.1 
OS = CentOS 5.5 x86_64

Please provide any additional information below.

Fixed this by adding the below line into pulledpork.pl right before the my $tar 
declaration:

local $Archive::Tar::CHOWN = 0; 

Original issue reported on code.google.com by eoin.mil...@gmail.com on 4 May 2011 at 7:56

GoogleCodeExporter commented 9 years ago
Added to fix for 0.6.2 and committed today, thanks for the report

Original comment by Cummin...@gmail.com on 7 Jun 2011 at 3:16