diff options
| author | ivan <ivan> | 2003-07-23 17:06:00 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2003-07-23 17:06:00 +0000 |
| commit | e802abcfc55d928fb96d5272548133e1cab56fad (patch) | |
| tree | bc07e5992b7a488b16683d868f3dd0cce9aeee58 | |
| parent | 36cd4eb55a365f73330e05369b03d74006409c7c (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); } |
