2006-11-21 Esteban Sanchez <estebans@artica.es>
* en/pandora_install.xml: Changed module_proc explanation and example, it doesn't need " if the process name has blank spaces. Added a comment to the ReceivedPackets example. * ChangeLog: Fixed the date of the last commmit. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@266 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
c4863bd516
commit
a5f9d18f13
|
@ -1,4 +1,12 @@
|
||||||
2006-09-29 David Villanueva <david.villanueva@artica.es>
|
2006-11-21 Esteban Sanchez <estebans@artica.es>
|
||||||
|
|
||||||
|
* en/pandora_install.xml: Changed module_proc explanation and example,
|
||||||
|
it doesn't need " if the process name has blank spaces. Added a
|
||||||
|
comment to the ReceivedPackets example.
|
||||||
|
|
||||||
|
* ChangeLog: Fixed the date of the last commmit.
|
||||||
|
|
||||||
|
2006-11-20 David Villanueva <david.villanueva@artica.es>
|
||||||
|
|
||||||
* en/pandora_introduction.xml: Changed in Server definition.
|
* en/pandora_introduction.xml: Changed in Server definition.
|
||||||
|
|
||||||
|
|
|
@ -762,8 +762,11 @@
|
||||||
</sect4>
|
</sect4>
|
||||||
<sect4><title>module_proc process (Win32 Only)</title>
|
<sect4><title>module_proc process (Win32 Only)</title>
|
||||||
<para>
|
<para>
|
||||||
Checks if a given processname is running in this host. Remember
|
Checks if a given processname is running in this host. If the
|
||||||
to use " " characters if process name contains blank spaces.
|
process name contains blank spaces <emphasis>do not</emphasis>
|
||||||
|
use " ". Also notice that the process name must have the
|
||||||
|
<application>.exe</application> extension. The module will
|
||||||
|
return the number of process running with this name.
|
||||||
</para>
|
</para>
|
||||||
</sect4>
|
</sect4>
|
||||||
<sect4><title>module_freedisk drive_letter: (Win32 Only)</title>
|
<sect4><title>module_freedisk drive_letter: (Win32 Only)</title>
|
||||||
|
@ -1402,11 +1405,13 @@
|
||||||
module_begin
|
module_begin
|
||||||
module_name Proc_lsass
|
module_name Proc_lsass
|
||||||
module_type generic_proc
|
module_type generic_proc
|
||||||
module_proc "lsass.exe"
|
module_proc lsass.exe
|
||||||
module_description Proceso LSASS.exe
|
module_description LSASS.exe process.
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
# Received packets
|
# Received packets.
|
||||||
|
# Please notice that "Paquetes recibidos" string must be replaced by
|
||||||
|
# the correct string in your Windows system language.
|
||||||
module_begin
|
module_begin
|
||||||
module_name ReceivedPackets
|
module_name ReceivedPackets
|
||||||
module_type generic_data
|
module_type generic_data
|
||||||
|
|
Loading…
Reference in New Issue