2014-06-03 Koichiro KIKUCHI <koichiro@rworks.jp>
* pandora_agent: Allow spaces in module group names. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10098 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
93fa7920a8
commit
52e857ac13
|
@ -1,3 +1,7 @@
|
|||
2014-06-03 Koichiro KIKUCHI <koichiro@rworks.jp>
|
||||
|
||||
* pandora_agent: Allow spaces in module group names.
|
||||
|
||||
2014-05-26 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* pandora_agent_installer: Fixed installed for Darwin/macOS agent. Tested
|
||||
|
|
|
@ -530,7 +530,7 @@ sub parse_conf_modules($) {
|
|||
} elsif ($line =~ /^\s*module_unit\s+(.*)\s*$/) {
|
||||
$module->{'unit'} = $1;
|
||||
# Module_group
|
||||
} elsif ($line =~ /^\s*module_group\s+(\S+)\s*$/) {
|
||||
} elsif ($line =~ /^\s*module_group\s+(.*?)\s*$/) {
|
||||
$module->{'module_group'} = $1;
|
||||
# Custom id
|
||||
} elsif ($line =~ /^\s*module_custom_id\s+(.*)\s*$/) {
|
||||
|
|
Loading…
Reference in New Issue