diff options
author | ivan <ivan> | 2004-05-06 22:29:25 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-05-06 22:29:25 +0000 |
commit | c7105cfe8d064cf8924d5b814310e315ef5c1578 (patch) | |
tree | fd4eb72b9a8f4b357be4061d26b8a32a8cdcba22 /bin/apache.export | |
parent | 1d4ff1d3b241a8e56a49e3a6cd83f7e46b96a446 (diff) |
add option to change the restart command in apache exports
Diffstat (limited to 'bin/apache.export')
-rwxr-xr-x | bin/apache.export | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/apache.export b/bin/apache.export index f0a6beefc..47863a9d5 100755 --- a/bin/apache.export +++ b/bin/apache.export @@ -51,7 +51,9 @@ foreach my $export ( @exports ) { } ) or die "rsync to $machine failed: ". join(" / ", $rsync->err); # warn $rsync->out; - ssh("root\@$machine", 'apachectl graceful'); + my $restart = $export->option('restart') || 'apachectl graceful'; + + ssh("root\@$machine", $restart); } |