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
33d8938473
commit
3bf08df1ed
|
@ -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>
|
2014-05-26 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
* pandora_agent_installer: Fixed installed for Darwin/macOS agent. Tested
|
* 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*$/) {
|
} elsif ($line =~ /^\s*module_unit\s+(.*)\s*$/) {
|
||||||
$module->{'unit'} = $1;
|
$module->{'unit'} = $1;
|
||||||
# Module_group
|
# Module_group
|
||||||
} elsif ($line =~ /^\s*module_group\s+(\S+)\s*$/) {
|
} elsif ($line =~ /^\s*module_group\s+(.*?)\s*$/) {
|
||||||
$module->{'module_group'} = $1;
|
$module->{'module_group'} = $1;
|
||||||
# Custom id
|
# Custom id
|
||||||
} elsif ($line =~ /^\s*module_custom_id\s+(.*)\s*$/) {
|
} elsif ($line =~ /^\s*module_custom_id\s+(.*)\s*$/) {
|
||||||
|
|
Loading…
Reference in New Issue