diff options
author | ivan <ivan> | 2003-07-23 17:05:58 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-07-23 17:05:58 +0000 |
commit | ebc86db916baf888acf7472c6ec781a678608481 (patch) | |
tree | af82849ef8fd341a7cfc1edb5a41bf09ff993284 | |
parent | 1dd6907483dae3aab9dc7b112d1b38af9f4a7060 (diff) |
bugfix for non-catchall domains
-rw-r--r-- | FS/FS/part_export/domain_shellcommands.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/part_export/domain_shellcommands.pm b/FS/FS/part_export/domain_shellcommands.pm index 0edbab0dd..cf5603394 100644 --- a/FS/FS/part_export/domain_shellcommands.pm +++ b/FS/FS/part_export/domain_shellcommands.pm @@ -35,6 +35,7 @@ sub _export_command { my $svc_acct = $svc_domain->catchall_svc_acct; ${$_} = $svc_acct->getfield($_) foreach qw(uid gid dir); } else { + no strict 'refs'; ${$_} = '' foreach qw(uid gid dir); } |