From 4121477dde8c9400bf81023bea3e0d980b34bf91 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 10 May 2004 11:10:58 +0000 Subject: [PATCH] make postfix export commands configrable --- FS/FS/part_export/postfix.pm | 5 +++++ bin/postfix.export | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/FS/FS/part_export/postfix.pm b/FS/FS/part_export/postfix.pm index c24cf19a3..4fd19ee61 100644 --- a/FS/FS/part_export/postfix.pm +++ b/FS/FS/part_export/postfix.pm @@ -11,6 +11,11 @@ tie my %options, 'Tie::IxHash', 'aliases' => { label=>'aliases file location', default=>'/etc/aliases' }, 'virtual' => { label=>'virtual file location', default=>'/etc/postfix/virtual' }, 'mydomain' => { label=>'local domain', default=>'' }, + 'newaliases' => { label=>'newaliases command', default=>'newaliases' }, + 'postmap' => { label=>'postmap command', + default=>'postmap hash:/etc/postfix/virtual', }, + 'reload' => { label=>'reload command', + default=>'postfix reload' }, ; %info = ( diff --git a/bin/postfix.export b/bin/postfix.export index 64d973837..dbb08ceb9 100755 --- a/bin/postfix.export +++ b/bin/postfix.export @@ -99,7 +99,7 @@ foreach my $export ( @exports ) { } ) or die "rsync to $machine failed: ". join(" / ", $rsync->err); # warn $rsync->out; - ssh("$user\@$machine", "newaliases"); + ssh("$user\@$machine", $export->option('newaliases') || 'newaliases'); # ssh("$user\@$machine", "postfix reload"); $rsync->exec( { @@ -107,8 +107,9 @@ foreach my $export ( @exports ) { dest => "$user\@$machine:". $export->option('virtual'), } ) or die "rsync to $machine failed: ". join(" / ", $rsync->err); # warn $rsync->out; - ssh("$user\@$machine", "postmap hash:/etc/postfix/virtual"); - ssh("$user\@$machine", "postfix reload"); + ssh("$user\@$machine", $export->option('postmap') + || 'postmap hash:/etc/postfix/virtual'); + ssh("$user\@$machine", $export->option('reload') || 'postfix reload'); } -- 2.11.0