X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=FS%2FFS%2Fsvc_www.pm;h=d4e3988107812325dc2200521ec8f0ee02fad17a;hb=44e51a5c50be350fa698bcdcf86ad5c01a7631a2;hp=fc1419c7d66051f1bc4df7f03a4fb746f44f28f9;hpb=5bd5f206a77cf975515d955119d4dff7764a2d8c;p=freeside.git diff --git a/FS/FS/svc_www.pm b/FS/FS/svc_www.pm index fc1419c7d..d4e398810 100644 --- a/FS/FS/svc_www.pm +++ b/FS/FS/svc_www.pm @@ -8,9 +8,9 @@ use FS::svc_Common; use FS::cust_svc; use FS::domain_record; use FS::svc_acct; -use FS::SSH qw(ssh); +use Net::SSH qw(ssh); -@ISA = qw(svc_Common); +@ISA = qw( FS::svc_Common ); #ask FS::UID to run this stuff for us later $FS::UID::callback{'FS::svc_www'} = sub { @@ -53,7 +53,7 @@ from FS::svc_Common. The following fields are currently supported: =item svcnum - primary key -=item recnum - DNS `A' record corresponding to this web virtual host. (see L) =item usersvc - account (see L) corresponding to this web virtual host. @@ -198,7 +198,7 @@ sub check { my $x = $self->setfixed; return $x unless ref($x); - my $part_svc = $x; + #my $part_svc = $x; my $error = $self->ut_numbern('svcnum') @@ -220,7 +220,7 @@ sub check { =head1 VERSION -$Id: svc_www.pm,v 1.1 2000-02-03 05:16:52 ivan Exp $ +$Id: svc_www.pm,v 1.6 2001-09-06 20:41:59 ivan Exp $ =head1 BUGS @@ -229,13 +229,6 @@ $Id: svc_www.pm,v 1.1 2000-02-03 05:16:52 ivan Exp $ L, L, L, L, L, L, schema.html from the base documentation. -=head1 HISTORY - -$Log: svc_www.pm,v $ -Revision 1.1 2000-02-03 05:16:52 ivan -beginning of DNS and Apache support - - =cut 1;