From f696a29caf78549f4702146af9cec960a3ebc9dc Mon Sep 17 00:00:00 2001 From: jsatoh Date: Tue, 8 Feb 2011 04:22:14 +0000 Subject: [PATCH] 2011-02-08 Junichi Satoh * util/pandora_manage.pl: Fixed invalid module id with creation of network module. Network module should be 2. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3810 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 5 +++++ pandora_server/util/pandora_manage.pl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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); }