Lines Matching refs:POSTCONF
3 # Usage: xpostdef postconf.proto >postconf.proto.new
5 # Update parameter default values in postconf prototype file.
7 $POSTCONF="postconf";
10 # a list of all the parameters that postconf knows about.
12 open(POSTCONF, "$POSTCONF -d|") || die "cannot run $POSTCONF -d: !$\n";
13 while(<POSTCONF>) {
22 die "unexpected $POSTCONF output: $_\n";
25 close(POSTCONF) || die "$POSTCONF failed: $!\n";
73 $defaults{$name} = "see \"postconf -d\" output";
76 # Process the postconf prototype file, and update default values
77 # with output from the postconf command. Leave alone any defaults
78 # that postconf didn't know about. This can happen when conditional
87 # postconf doesn't have a suitable one.
104 } while(($_ = <POSTCONF>) && /^../);