From: Darren D. <Dar...@eh...> - 2010-09-13 22:31:32
|
Supposed my node belongs to all three groups (group1, group2, and group3). What would happens if I have the following attribute filtering in my config.xml? Will myscript1.script be picked? or myscript3.script? or all 3 will get picked? If all 3 get picked, does the resulting content be the combined result from the 3 script? or will it just be the result of the last script that is run, which is myscript3 in this case. <config> <file> <warning_file/> <!-- By default files will be owned by root, but you can change that. If this user or group doesn't exist UID 0 and GID 0 will be used as a faillback. <owner>demouser</owner> <group>demogroup</group> --> <perms>400</perms> <source> <script group="group1">myscript1.script</script> <script group="group2">myscript2.script</script> <script group="group3">myscript3.script</script> </source> </file> </config> |