apache export: don't bomb out when svc_www records aren't associated with an svc_acct...
authorivan <ivan>
Fri, 20 Jul 2007 19:58:34 +0000 (19:58 +0000)
committerivan <ivan>
Fri, 20 Jul 2007 19:58:34 +0000 (19:58 +0000)
bin/apache.export

index d1ee9e7..da2d73c 100755 (executable)
@@ -45,10 +45,16 @@ foreach my $export ( @exports ) {
   foreach my $svc_www ( @svc_www ) {
     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;
+    if ( $svc_www->svc_acct ) {
+      $username = $svc_www->svc_acct->username;
+      $dir = $svc_www->svc_acct->dir;
+      $email = $svc_www->svc_acct->email;
+    } else {
+      $username = '';
+      $dir      = '';
+      $email    = '';
+    }
 
     warn "  adding configuration section for $zone\n"
       if $opt{d};