|
From: Stanislav S. <ssi...@ya...> - 2002-12-23 16:58:12
|
Hi all,
I've made several unsuccessful tries to apply new packages (classified and news),
and now my conf/package_repository.perl is broken.
The sequence is as follows ( no OI-specific environment set):
oi_manage apply_package --package=classified-1.36 \
--website_dir=/v1/openinteract/oi.xicom.ch
oi_manage apply_package --package=classified-1.36 \
--website_dir=/v1/openinteract/oi.xicom.ch
these failed because base_dir appeared to be needed,
though there's not a word about it in the docs!
oi_manage apply_package --package=classified-1.36 \
--website_dir=/v1/openinteract/oi.xicom.ch \
--base_dir=/v1/openinteract/base
oi_manage apply_package --package=news-1.48 \
--website_dir=/v1/openinteract/oi.xicom.ch \
--base_dir=/v1/openinteract/base
these failed because version is not needed in --package
(again, examples needed, and would be nice to have better
handling in oi_manage)
oi_manage apply_package --package=news \
--website_dir=/v1/openinteract/oi.xicom.ch \
--base_dir=/v1/openinteract/base
Finally, this finished with success, but my
site's conf/package_repository.perl contains only one object
(see below).
After Holidays I'll try to fight it again...
Regards,
Stanislav.
===========================================================
$data = {
'META_INF' => {
'base_dir' => '/v1/openinteract/oi.xicom.ch'
},
'news-1.48' => {
'description' => 'Implement a simple news system.',
'installed_on' => '2002-12-23 17:43:57',
'package_dir' => 'pkg/news-1.48',
'base_dir' => '/v1/openinteract/base',
'name' => 'news',
'website_name' => 'XicomIntranet',
'website_dir' => '/v1/openinteract/oi.xicom.ch',
'url' => 'http://www.openinteract.org/',
'author' => [
'Chris Winters (ch...@cw...)'
],
'sql_installer' => 'OpenInteract::SQLInstall::News',
'version' => '1.48'
}
};
|