1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-30 22:50:10 +03:00

bug: fix marketplace issues

This commit is contained in:
Ruben S. Montero 2016-04-12 23:21:38 +02:00
parent 1fa8b03c08
commit 0c03f3ee20
2 changed files with 2 additions and 2 deletions

View File

@ -1005,7 +1005,7 @@ DS_MAD_CONF = [
MARKET_MAD_CONF = [
NAME = "one",
REQUIRED_ATTRS = "",
APP_ACTIONS = "create, monitor",
APP_ACTIONS = "monitor",
PUBLIC = "yes"
]

View File

@ -227,7 +227,7 @@ int MarketPlaceAppPool::import(const std::string& t64, int mp_id,
if( mp_aux != 0 ) //Marketplace app already imported
{
if ( mp_aux->version != app->version || mp_aux->md5 != app->version )
if ( mp_aux->version != app->version || mp_aux->md5 != app->md5 )
{
mp_aux->from_template64(t64, error_str);
update(mp_aux);