Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Manage/Website
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7156/lib/OpenInteract2/Manage/Website
Modified Files:
InstallPackageSql.pm
Log Message:
modify what we skip when first creating the context
Index: InstallPackageSql.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Manage/Website/InstallPackageSql.pm,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** InstallPackageSql.pm 24 Jan 2005 17:02:38 -0000 1.12
--- InstallPackageSql.pm 13 Feb 2005 20:32:18 -0000 1.13
***************
*** 30,34 ****
sub setup_task {
my ( $self ) = @_;
! $self->_setup_context( { skip => 'initialize spops' } );
}
--- 30,34 ----
sub setup_task {
my ( $self ) = @_;
! $self->_setup_context( { skip => 'read spops config' } );
}
***************
*** 45,50 ****
$self->_add_status( $struct->get_status );
! # Initializes the SPOPS objects now that the tables are created...
! OpenInteract2::Setup->run_setup_for( 'initialize spops' );
$data->execute;
--- 45,51 ----
$self->_add_status( $struct->get_status );
! # Reads and initializes the SPOPS objects now that the tables
! # are created...
! OpenInteract2::Setup->run_setup_for( 'read spops config' );
$data->execute;
|