Made prune paths relative
This commit is contained in:
parent
9e4d6c250f
commit
07d7027bf0
|
@ -35,11 +35,13 @@ sub new {
|
|||
# * Other system dependent parameters, e.g., whether to use ACLs
|
||||
#
|
||||
# For now we just hardcode the stuff:
|
||||
|
||||
$self->{prune} = {
|
||||
'/proc' => 1,
|
||||
'/sys' => 1,
|
||||
'/nfs' => 1,
|
||||
'/tmp/hyre_be_dragones' => 1,
|
||||
# directories to prune. These are relative
|
||||
# paths which may not be ideal.
|
||||
'./proc' => 1,
|
||||
'./sys' => 1,
|
||||
'./nfs' => 1,
|
||||
};
|
||||
$self->{charset} = 'utf-8';
|
||||
$self->{fh_out} = exists($opt->{fh_out}) ? $opt->{fh_out} : \*STDOUT;
|
||||
|
|
Loading…
Reference in New Issue