diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 7565443dcf..6db9fb90d2 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,8 @@ +2011-02-08 Junichi Satoh + + * util/pandora_manage.pl: Fixed invalid module id with creation of + network module. Network module should be 2. + 2011-02-07 Sancho Lerena * pandora_server/DEBIAN/control, diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 935b0680fc..78786abc0f 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -763,7 +763,7 @@ sub pandora_manage_main ($$$) { $parameters{'post_process'} = $post_process unless !defined ($post_process); $parameters{'module_interval'} = $interval unless !defined ($interval); - $parameters{'id_modulo'} = 1; + $parameters{'id_modulo'} = 2; pandora_create_module_from_hash ($conf, \%parameters, $dbh); }