diff options
author | jeff <jeff> | 2007-04-01 02:45:28 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-04-01 02:45:28 +0000 |
commit | 8a507f43bfa5c5232b5babfbbf82ac5de5702add (patch) | |
tree | dd11d74323ec8c510ce21ea4a477bdd15fc9f628 /bin/apache.export | |
parent | b4060ee8879f433c3cdd4a2b6bef55f136863a5f (diff) |
quick hack to add extra 'config lines' to svc_www and otherwise enhance svc_www
Diffstat (limited to 'bin/apache.export')
-rwxr-xr-x | bin/apache.export | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/apache.export b/bin/apache.export index 47863a9d5..b39b5f1a2 100755 --- a/bin/apache.export +++ b/bin/apache.export @@ -36,9 +36,12 @@ foreach my $export ( @exports ) { my @svc_www = $export->svc_x; foreach my $svc_www ( @svc_www ) { - use vars qw($zone $username); + use vars qw($zone $username $dir $email $config); $zone = $svc_www->domain_record->zone; $username = $svc_www->svc_acct->username; + $dir = $svc_www->svc_acct->dir; + $email = $svc_www->svc_acct->email; + $config = $svc_www->config; print HTTPD_CONF eval(qq("$template")). "\n\n"; } |