2011-02-08 Junichi Satoh <junichi@rworks.jp>

* 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
This commit is contained in:
jsatoh 2011-02-08 04:22:14 +00:00
parent 46fe1807b0
commit f696a29caf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-02-08 Junichi Satoh <junichi@rworks.jp>
* util/pandora_manage.pl: Fixed invalid module id with creation of
network module. Network module should be 2.
2011-02-07 Sancho Lerena <slerena@artica.es>
* pandora_server/DEBIAN/control,

View File

@ -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);
}