Leser: 2
6 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
# TAG: coredump_dir
# By default Squid leaves core files in the directory from where
# it was started. If you set 'coredump_dir' to a directory
# that exists, Squid will chdir() to that directory at startup
# and coredump files will be left there.
#
#Default:
# coredump_dir none
#
# Leave coredumps in the first cache dir
coredump_dir /opt/lala/squid/var/cache
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use strict; my %hash; my $tag = 'coredump_dir'; my $default = 'none'; my $value = '/opt/lala/squid/var/cache'; $hash{$tag}{"default"} = [$default]; $hash{$tag}{"value"} = [$value]; foreach my $key (keys %hash){ print $key . "\t"; print $hash{$key}{"default"}[0] . "\t"; print $hash{$key}{"value"}[0] . "\n"; }
6 Einträge, 1 Seite |