diff options
author | ivan <ivan> | 2003-03-28 21:59:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-03-28 21:59:16 +0000 |
commit | 51ddce1cd517621308c85fac1a04e7f970ba8eba (patch) | |
tree | cb0d2d0be5838af0e9c9f18ad411ffb8e549e61b /bin/apache.export | |
parent | fef2bffbf0315a3bd03d63c1d049d2b2afd9f1a7 (diff) |
fix missing semicolon in apache export
Diffstat (limited to 'bin/apache.export')
-rwxr-xr-x | bin/apache.export | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/apache.export b/bin/apache.export index 6142c92b4..ed85df7cf 100755 --- a/bin/apache.export +++ b/bin/apache.export @@ -43,7 +43,7 @@ foreach my $export ( @exports ) { } my $user = $export->option('user'); - my $httpd_conf = $export->option('httpd_conf') + my $httpd_conf = $export->option('httpd_conf'); $rsync->exec( { src => $file, @@ -55,7 +55,7 @@ foreach my $export ( @exports ) { } -close NAMED_CONF; +close HTTPD_CONF; # ----- |