summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2000-07-17 13:51:07 +0000
committerivan <ivan>2000-07-17 13:51:07 +0000
commit48b905cd57f4b9e0f33e84bcee15b28d812c3d9f (patch)
treeffd1c48918e4a2290d06062d781775df756ae660 /FS
parentf661a63aef925a50a7529504070c69dd0f18df80 (diff)
silly mistake
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/svc_acct.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm
index 93b657f2d..d2e3918da 100644
--- a/FS/FS/svc_acct.pm
+++ b/FS/FS/svc_acct.pm
@@ -188,7 +188,7 @@ sub insert {
$self->shell,
);
if ( $username && $uid && $dir && $shellmachine && ! $nossh_hack ) {
- ssh("root\@$shellmachine", eval "$useradd");
+ ssh("root\@$shellmachine", eval qq("$useradd") );
}
''; #no error
@@ -242,7 +242,7 @@ sub delete {
$self->dir,
);
if ( $username && $shellmachine && ! $nossh_hack ) {
- ssh("root\@$shellmachine", eval "$userdel");
+ ssh("root\@$shellmachine", eval qq("$userdel") );
}
'';
@@ -304,7 +304,7 @@ sub replace {
$new->getfield('gid'),
);
if ( $old_dir && $new_dir && $old_dir ne $new_dir && ! $nossh_hack ) {
- ssh("root\@$shellmachine", eval "$usermod" );
+ ssh("root\@$shellmachine", eval qq("$usermod") );
}
''; #no error
@@ -536,7 +536,7 @@ sub radius_check {
=head1 VERSION
-$Id: svc_acct.pm,v 1.12 2000-07-17 10:53:42 ivan Exp $
+$Id: svc_acct.pm,v 1.13 2000-07-17 13:51:07 ivan Exp $
=head1 BUGS