2006-12-03 Sancho Lerena <slerena@artica.es>
* win32/installer: Updated some installer items. (.conf), Readme, .mpi (installer sources) and replaced final .EXE installer with an updated one. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@299 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e9a2462dfc
commit
6760510755
|
@ -1,105 +1,105 @@
|
|||
# Fichero de configuracion base de agentes de Pandora
|
||||
# Base config file for Pandora agents
|
||||
# Version 1.2 Beta 3
|
||||
# (c) 2006 Esteban Sanchez
|
||||
# (c) 2006 Artica Soluciones Tecnologicas
|
||||
# This program is Free Software, you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public Licence as published by the Free Software
|
||||
# Foundation; either version 2 of the Licence or any later version.
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, without ever the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE.
|
||||
|
||||
# General Parameters
|
||||
# ==================
|
||||
|
||||
server_ip 127.0.0.1
|
||||
server_path /var/spool/pandora/data_in
|
||||
temporal "C:\windows\temp"
|
||||
interval 10
|
||||
agent_name localhost
|
||||
#debug 1
|
||||
|
||||
# Module Definition
|
||||
# =================
|
||||
|
||||
|
||||
# Counting OpenedConnections (check the language string)
|
||||
module_begin
|
||||
module_name OpenNetConnections
|
||||
module_type generic_data
|
||||
module_exec netstat -na | grep ESTAB | wc -l | tr -d " "
|
||||
module_description Open Connections (interval 2)
|
||||
module_interval 2
|
||||
module_end
|
||||
|
||||
# Is Schedule service running ?
|
||||
module_begin
|
||||
module_name ServicioProg
|
||||
module_type generic_proc
|
||||
module_service Schedule
|
||||
module_description Schedule Service
|
||||
module_end
|
||||
|
||||
# Is Eventlog service running ?
|
||||
module_begin
|
||||
module_name ServicioReg
|
||||
module_type generic_proc
|
||||
module_service Eventlog
|
||||
module_description Eventlog Service
|
||||
module_end
|
||||
|
||||
# Is lsass.exe process alive ?
|
||||
module_begin
|
||||
module_name Proc_lsass
|
||||
module_type generic_proc
|
||||
module_proc lsass.exe
|
||||
module_description LSASS Process
|
||||
module_end
|
||||
|
||||
# Is lsass.exe process alive ?
|
||||
module_begin
|
||||
module_name Proc_winlogon
|
||||
module_type generic_proc
|
||||
module_proc winlogon.exe
|
||||
module_description Winlogon
|
||||
module_end
|
||||
|
||||
# Is lsass.exe process alive ?
|
||||
module_begin
|
||||
module_name Proc_cmd
|
||||
module_type generic_proc
|
||||
module_proc cmd.exe
|
||||
module_description cmd
|
||||
module_end
|
||||
|
||||
# Received packets
|
||||
module_begin
|
||||
module_name ReceivedPackets
|
||||
module_type generic_data
|
||||
module_exec netstat -s | grep "Packets Received" | tr -d " " | cut -f 2 -d "=" | tr -d "\n"
|
||||
module_description Received packets (interval 2)
|
||||
module_end
|
||||
|
||||
# Free space on disk
|
||||
module_begin
|
||||
module_name FreeDiskC
|
||||
module_type generic_data
|
||||
module_freedisk C:
|
||||
module_description Free space on drive C:
|
||||
module_end
|
||||
|
||||
# CPU usage percentage
|
||||
module_begin
|
||||
module_name CPUUse0
|
||||
module_type generic_data
|
||||
module_cpuusage 0
|
||||
module_description CPU#0 usage
|
||||
module_end
|
||||
|
||||
module_begin
|
||||
module_name FreeMemory
|
||||
module_type generic_data
|
||||
module_freememory
|
||||
module_description Amount of free memory.
|
||||
module_end
|
||||
# Fichero de configuracion base de agentes de Pandora
|
||||
# Base config file for Pandora FMS Windows Agent
|
||||
# Version 1.2.0
|
||||
# (c) 2006 Esteban Sanchez
|
||||
# (c) 2006 Artica Soluciones Tecnologicas
|
||||
# This program is Free Software, you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public Licence as published by the Free Software
|
||||
# Foundation; either version 2 of the Licence or any later version.
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, without ever the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE.
|
||||
|
||||
# General Parameters
|
||||
# ==================
|
||||
|
||||
server_ip 192.168.50.100
|
||||
server_path /opt/pandora_server/data_in
|
||||
temporal "C:\windows\temp"
|
||||
interval 300
|
||||
agent_name caprica
|
||||
#debug 1
|
||||
|
||||
# Module Definition
|
||||
# =================
|
||||
|
||||
|
||||
# Counting OpenedConnections (check the language string)
|
||||
module_begin
|
||||
module_name OpenNetConnections
|
||||
module_type generic_data
|
||||
module_exec netstat -na | grep ESTAB | wc -l | tr -d " "
|
||||
module_description Open Connections (interval 2)
|
||||
module_interval 2
|
||||
module_end
|
||||
|
||||
# Is Schedule service running ?
|
||||
module_begin
|
||||
module_name ServicioProg
|
||||
module_type generic_proc
|
||||
module_service Schedule
|
||||
module_description Schedule Service
|
||||
module_end
|
||||
|
||||
# Is Eventlog service running ?
|
||||
module_begin
|
||||
module_name ServicioReg
|
||||
module_type generic_proc
|
||||
module_service Eventlog
|
||||
module_description Eventlog Service
|
||||
module_end
|
||||
|
||||
# Is lsass.exe process alive ?
|
||||
module_begin
|
||||
module_name Proc_lsass
|
||||
module_type generic_proc
|
||||
module_proc lsass.exe
|
||||
module_description LSASS Process
|
||||
module_end
|
||||
|
||||
# Is lsass.exe process alive ?
|
||||
module_begin
|
||||
module_name Proc_winlogon
|
||||
module_type generic_proc
|
||||
module_proc winlogon.exe
|
||||
module_description Winlogon
|
||||
module_end
|
||||
|
||||
# Is lsass.exe process alive ?
|
||||
module_begin
|
||||
module_name Proc_cmd
|
||||
module_type generic_proc
|
||||
module_proc cmd.exe
|
||||
module_description cmd
|
||||
module_end
|
||||
|
||||
# Received packets
|
||||
module_begin
|
||||
module_name ReceivedPackets
|
||||
module_type generic_data
|
||||
module_exec netstat -s | grep "Packets Received" | tr -d " " | cut -f 2 -d "=" | tr -d "\n"
|
||||
module_description Received packets (interval 2)
|
||||
module_end
|
||||
|
||||
# Free space on disk
|
||||
module_begin
|
||||
module_name FreeDiskC
|
||||
module_type generic_data
|
||||
module_freedisk C:
|
||||
module_description Free space on drive C:
|
||||
module_end
|
||||
|
||||
# CPU usage percentage
|
||||
module_begin
|
||||
module_name CPUUse0
|
||||
module_type generic_data
|
||||
module_cpuusage 0
|
||||
module_description CPU#0 usage
|
||||
module_end
|
||||
|
||||
module_begin
|
||||
module_name FreeMemory
|
||||
module_type generic_data
|
||||
module_freememory
|
||||
module_description Amount of free memory.
|
||||
module_end
|
||||
|
|
Binary file not shown.
|
@ -1,4 +1,7 @@
|
|||
Pandora FMS is the Free Monitoring System.
|
||||
Pandora FMS Windows Agent v1.2
|
||||
==============================
|
||||
|
||||
For mode information, please refer to documentation, you can get it on our proyect website at http://pandora.sourceforge.net
|
||||
|
||||
This is the Windows agent installer, programmed in C++ with GNU tools and gcc.
|
||||
|
||||
|
@ -15,17 +18,17 @@ The directory structure that will be created is something like:
|
|||
|
||||
Pandora_Agent\pandora_agent.conf :: Pandora Windows Agent main configuration
|
||||
Pandora_Agent\key\ :: Directory which holds the private and
|
||||
public key files
|
||||
public key files
|
||||
Pandora_Agent\key\id_dsa :: Private key to access the Pandora server
|
||||
using SSH
|
||||
using SSH
|
||||
Pandora_Agent\key\id_dsa.pub :: Public key to access the Pandora server
|
||||
using SSH
|
||||
using SSH
|
||||
|
||||
You also have:
|
||||
|
||||
Pandora_Agent\utils\ :: Directory where the user could put
|
||||
misc utils to use with exec type modules
|
||||
I.e. UNIX-like tools (cut, grep, etc...)
|
||||
misc utils to use with exec type modules
|
||||
I.e. UNIX-like tools (cut, grep, etc...)
|
||||
|
||||
In the configuration file pandora_agent.conf, you can find
|
||||
these directives (this is a small resume, more information at
|
||||
|
@ -58,12 +61,18 @@ module_end - End of a module
|
|||
module_name - Name for the identification of the module
|
||||
|
||||
module_type - Type of data of the module:
|
||||
|
||||
- generic_data - It's a simple numeric, floating point or integer.
|
||||
|
||||
- generic_data_inc - It's an integer numeric, difference between the data
|
||||
collected previously with the data collected at that moment.
|
||||
collected previously with the data collected at that moment.
|
||||
|
||||
- generic_data_string - Text String.
|
||||
|
||||
- generic_proc - It stores the state of processes numerically.
|
||||
Its value is 0 for a "bad" state and any number greater than 0 for the
|
||||
"good" state.
|
||||
Its value is 0 for a "bad" state and any number greater than 0 for the
|
||||
"good" state.
|
||||
|
||||
module_description - Description of the module :-D
|
||||
|
||||
For mode information, please refer to documentation, you can get it on our proyect website at http://pandora.sourceforge.net
|
|
@ -3,7 +3,7 @@ AllowLanguageSelection
|
|||
Yes
|
||||
|
||||
AppName
|
||||
{Pandora Free Monitoring System Windows Agent}
|
||||
{Pandora FMS Windows Agent}
|
||||
|
||||
ApplicationID
|
||||
97CBF91D-0515-4D67-9A51-DC1814710701
|
||||
|
@ -24,7 +24,7 @@ CommandLineFailureAction
|
|||
{Fail (recommended)}
|
||||
|
||||
Company
|
||||
{Ártica Soluciones Tecnológicas S.L.}
|
||||
{ArticaST - http://www.artica.es}
|
||||
|
||||
CompressionLevel
|
||||
6
|
||||
|
@ -72,7 +72,7 @@ ThemeVersion
|
|||
1
|
||||
|
||||
Version
|
||||
1.2
|
||||
1.2.0
|
||||
|
||||
ViewReadme
|
||||
Yes
|
||||
|
@ -81,22 +81,7 @@ Yes
|
|||
|
||||
FileGroup ::AC33C2B4-AB01-4572-802B-BA89E7661C04 -setup Install -type filegroup -active Yes -platforms Windows -name Pandora -parent FileGroups
|
||||
File ::6DA2A3A6-1067-4E78-9588-557D5EFD6246 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key -type dir -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
File ::5C4CD905-0532-4F03-8C35-89786ED2CEB3 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/id_dsa -type file -active 0 -parent 6DA2A3A6-1067-4E78-9588-557D5EFD6246
|
||||
File ::FC77F4B2-AC48-4803-B746-D5919B79E1BA -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/id_dsa.pub -type file -active 0 -parent 6DA2A3A6-1067-4E78-9588-557D5EFD6246
|
||||
File ::732880DD-6768-46CB-BB70-7980E56441A6 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/PUT_SSH_KEYS_HERE -type file -parent 6DA2A3A6-1067-4E78-9588-557D5EFD6246
|
||||
File ::5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn -type dir -active 0 -parent 6DA2A3A6-1067-4E78-9588-557D5EFD6246
|
||||
File ::EBCEA2A0-6F2D-4D7F-B180-BE5A5B13D403 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/all-wcprops -type file -parent 5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C
|
||||
File ::3461D1A8-36B4-40C5-8ABD-B27E8AA11EE4 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/entries -type file -parent 5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C
|
||||
File ::DD0A0259-F170-4E65-B43B-CC4439D1103F -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/format -type file -parent 5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C
|
||||
File ::E5FAA25B-3003-4298-B513-54F3FDD1F96D -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/prop-base -type dir -active 0 -parent 5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C
|
||||
File ::CC184E9C-07E4-48C5-AFD4-843388870401 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/props -type dir -active 0 -parent 5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C
|
||||
File ::04F5CA15-2F5A-4AE1-919E-DA2F756A0D70 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/text-base -type dir -active 0 -parent 5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C
|
||||
File ::721E2D79-7EA5-4EF8-BB32-F20A6422E2E4 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/text-base/PUT_SSH_KEYS_HERE.svn-base -type file -parent 04F5CA15-2F5A-4AE1-919E-DA2F756A0D70
|
||||
File ::FB2996BC-41B6-4A2A-800C-32C896CB2254 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/tmp -type dir -active 0 -parent 5FFFA207-1CAE-4B67-9D15-C27B5FC6FC4C
|
||||
File ::92DB9904-CB82-459D-8E21-32D9240099D8 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/tmp/prop-base -type dir -parent FB2996BC-41B6-4A2A-800C-32C896CB2254
|
||||
File ::E22186B4-1AD5-4E07-A767-3B84901F00BD -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/tmp/props -type dir -parent FB2996BC-41B6-4A2A-800C-32C896CB2254
|
||||
File ::7B5A6BC9-AA3A-41B7-9918-BECAFCBDC9E3 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/tmp/text-base -type dir -parent FB2996BC-41B6-4A2A-800C-32C896CB2254
|
||||
File ::E4BA4651-AE89-4F4F-BADC-00162647E5E9 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/key/.svn/tmp/wcprops -type dir -parent FB2996BC-41B6-4A2A-800C-32C896CB2254
|
||||
File ::253702CB-C5FD-47A3-8C1B-BEE11167D259 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util -type dir -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
File ::773340B0-9FF7-4CAA-8B83-0BC7F9A30921 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/cut.exe -type file -parent 253702CB-C5FD-47A3-8C1B-BEE11167D259
|
||||
File ::3753FFC9-BF8F-4872-B856-0DB200BEBBBC -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/date.exe -type file -parent 253702CB-C5FD-47A3-8C1B-BEE11167D259
|
||||
|
@ -110,42 +95,6 @@ File ::7CE0D0A8-DF39-4A4F-B130-DD5A4550ADC7 -name E:/SVN/pandora/trunk/pandora_a
|
|||
File ::F6C0A697-316C-4F8D-A760-58C91C0520B7 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/tail.exe -type file -parent 253702CB-C5FD-47A3-8C1B-BEE11167D259
|
||||
File ::1F4821FF-1F78-4621-B220-E837483D4724 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/tr.exe -type file -parent 253702CB-C5FD-47A3-8C1B-BEE11167D259
|
||||
File ::8583B998-89A2-4DC9-A50B-3E09FC4A572F -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/wc.exe -type file -parent 253702CB-C5FD-47A3-8C1B-BEE11167D259
|
||||
File ::DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn -type dir -active 0 -parent 253702CB-C5FD-47A3-8C1B-BEE11167D259
|
||||
File ::25EBA718-1AEB-42B7-803D-891DC69B4A0E -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/all-wcprops -type file -active 0 -parent DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5
|
||||
File ::736B9DA9-F2DD-4CD6-AE61-1035508712FB -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/entries -type file -active 0 -parent DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5
|
||||
File ::46BB1829-5B71-4B77-AA6C-AD8F40E72068 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/format -type file -active 0 -parent DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5
|
||||
File ::AA016215-95B1-4523-BD3D-545DBFFFE726 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base -type dir -active 0 -parent DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5
|
||||
File ::B48BCB30-54CB-499C-A244-09F94DA2DF44 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/cut.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::FB88D44D-60DB-4581-85DA-F37B46E10F51 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/date.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::E9CC0D7C-754C-4F9F-8913-CF4B777A887E -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/expr.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::6368AAA2-4E4A-4464-A603-55C54D2D8179 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/gawk.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::4C1005EA-9270-4F1D-91FD-42FDCF3CD4D2 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/grep.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::B652B446-1B02-4581-85A8-6D865BA287B8 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/head.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::4577522D-0E3E-4C1B-8E81-48A3F7A662CE -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/ls.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::5C20FF0B-6150-48AA-8F02-2A05B9EB02E3 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/md5.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::4C21736A-9D36-44EE-B058-EEC6FC633AFE -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/puttygen.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::F5C39B10-311C-47E5-A80B-8CADBDBF7977 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/tail.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::53DCB266-805F-46BF-85B4-1F42CC391E6D -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/tr.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::1CAFC877-563C-4D97-A6EA-DAE7F3824ECC -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/prop-base/wc.exe.svn-base -type file -parent AA016215-95B1-4523-BD3D-545DBFFFE726
|
||||
File ::1974B6A9-3363-4DCD-98A1-D14C36FCF5C2 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/props -type dir -active 0 -parent DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5
|
||||
File ::38D4EED6-A914-41CF-AE68-ABF00EDE4891 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base -type dir -active 0 -parent DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5
|
||||
File ::E9F53969-9211-487A-A98E-8066E5393B03 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/cut.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::C64C1FC5-A813-45C0-973B-5838DC2C1CB1 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/date.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::F5F379BD-9E45-42FE-8B17-B2988B413640 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/expr.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::DACBEC77-204C-4919-ABF7-B0A9E04B8ED5 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/gawk.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::148DF6BA-B717-46E1-92D7-600B504EB7BD -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/grep.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::8916126C-1357-4C50-A202-99718879369B -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/head.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::6F8C4F15-4295-4403-8FDC-3816B02002EB -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/ls.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::8D148B9E-7DA6-4607-AB21-A4358762CFAA -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/md5.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::A0CE3364-E2FC-4068-AE07-375DD3033CDD -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/puttygen.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::2D31828D-65A1-44C1-9D4F-017A60999954 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/tail.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::15FC5008-32B2-47F6-9960-33B74DE9FE32 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/tr.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::81B3FE5C-DB31-471C-B04E-38FF698274DD -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/text-base/wc.exe.svn-base -type file -parent 38D4EED6-A914-41CF-AE68-ABF00EDE4891
|
||||
File ::058FC295-6EB3-472C-8908-5A2ACE924B6C -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/tmp -type dir -active 0 -parent DCAEE111-50C6-4C9B-92CA-EFA23EA12DD5
|
||||
File ::7809D0DE-6E83-42E3-81ED-BE6233F49948 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/tmp/prop-base -type dir -parent 058FC295-6EB3-472C-8908-5A2ACE924B6C
|
||||
File ::B5D109E7-7790-47E6-B900-84FBE227587E -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/tmp/props -type dir -parent 058FC295-6EB3-472C-8908-5A2ACE924B6C
|
||||
File ::0C0BB512-76DC-4D94-97E6-0C15B41513B9 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/tmp/text-base -type dir -parent 058FC295-6EB3-472C-8908-5A2ACE924B6C
|
||||
File ::C03923C7-FE97-462F-865D-006541C55554 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/util/.svn/tmp/wcprops -type dir -parent 058FC295-6EB3-472C-8908-5A2ACE924B6C
|
||||
File ::5C296981-DD34-430A-921F-1B392C4D9D4D -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/libeay32.dll -type file -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
File ::5AE89E3D-CED2-4A3E-A6B2-3F078DD5AFF5 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/pandora_agent.conf -type file -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
File ::F9B74871-5757-4867-8C4F-5C73BC52D864 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/PandoraAgent.exe -type file -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
|
@ -155,18 +104,6 @@ File ::948C2E48-E7F8-4339-8E5E-494B1E949A25 -name E:/SVN/pandora/trunk/pandora_a
|
|||
File ::3ADC9E8F-2866-47C1-A374-E9F1F4A67D8F -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/LICENSE.txt -type file -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
File ::7A1CA342-E39A-4F70-B58D-21C3DEBF7827 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help -type dir -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
File ::C0838E16-8BDE-4894-8592-D51DA29AE46E -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/how_to_keys.html -type file -parent 7A1CA342-E39A-4F70-B58D-21C3DEBF7827
|
||||
File ::69D866C7-FEDB-4051-9050-0086968BFEC0 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn -type dir -active 0 -parent 7A1CA342-E39A-4F70-B58D-21C3DEBF7827
|
||||
File ::EF71F254-43AA-41F8-98AA-AC888E8DE94A -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/all-wcprops -type file -parent 69D866C7-FEDB-4051-9050-0086968BFEC0
|
||||
File ::6F7CDDC0-4CA0-4F8B-A344-0D7C89D4DD57 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/entries -type file -parent 69D866C7-FEDB-4051-9050-0086968BFEC0
|
||||
File ::AB449748-3F05-485A-9025-8FAA91201CFD -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/format -type file -parent 69D866C7-FEDB-4051-9050-0086968BFEC0
|
||||
File ::FE4C9287-E115-4BF9-8911-C8DAA4DF8FD9 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/prop-base -type dir -parent 69D866C7-FEDB-4051-9050-0086968BFEC0
|
||||
File ::38393B84-D2E8-4922-90FA-1D28DF27AD00 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/props -type dir -parent 69D866C7-FEDB-4051-9050-0086968BFEC0
|
||||
File ::0E93FD7D-1B93-4E90-A482-E4FCBF438C05 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/text-base -type dir -parent 69D866C7-FEDB-4051-9050-0086968BFEC0
|
||||
File ::D1B2764E-D985-4CC3-9542-A16A3A3AB0C4 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/text-base/how_to_keys.html.svn-base -type file -parent 0E93FD7D-1B93-4E90-A482-E4FCBF438C05
|
||||
File ::ACCFEEC3-3B9A-404B-8439-5F5B59C284B6 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/tmp -type dir -parent 69D866C7-FEDB-4051-9050-0086968BFEC0
|
||||
File ::A4FFC531-4C71-4424-B1ED-2693B9A7CD63 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/tmp/prop-base -type dir -parent ACCFEEC3-3B9A-404B-8439-5F5B59C284B6
|
||||
File ::76BAAD51-4623-4CE3-81E5-D650B473E0FB -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/tmp/props -type dir -parent ACCFEEC3-3B9A-404B-8439-5F5B59C284B6
|
||||
File ::86E716CD-9BF1-451E-8770-50DE8F0874A8 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/.svn/tmp/text-base -type dir -parent ACCFEEC3-3B9A-404B-8439-5F5B59C284B6
|
||||
File ::D6AA8CC0-30A8-44E4-A888-8846C0E87BF4 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images -type dir -parent 7A1CA342-E39A-4F70-B58D-21C3DEBF7827
|
||||
File ::AEC3D30A-F79D-4235-8107-628C52F4D1B5 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/1.jpg -type file -parent D6AA8CC0-30A8-44E4-A888-8846C0E87BF4
|
||||
File ::B75FAEB7-AFB8-4F87-9730-6D4330B7E987 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/2.jpg -type file -parent D6AA8CC0-30A8-44E4-A888-8846C0E87BF4
|
||||
|
@ -174,42 +111,9 @@ File ::CB23E3A0-7C81-4D53-943A-54F3EC44AE73 -name E:/SVN/pandora/trunk/pandora_a
|
|||
File ::98F7B423-85F2-4F86-AD12-723973C4A806 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/4.jpg -type file -parent D6AA8CC0-30A8-44E4-A888-8846C0E87BF4
|
||||
File ::D3DF2241-A8E4-4C4D-869C-CAF2CF20AE99 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/5.jpg -type file -parent D6AA8CC0-30A8-44E4-A888-8846C0E87BF4
|
||||
File ::1087E54B-C1D2-44DE-8E95-34CC903EF759 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/6.jpg -type file -parent D6AA8CC0-30A8-44E4-A888-8846C0E87BF4
|
||||
File ::883EF532-9BF8-4D00-A4E6-5292136325BB -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn -type dir -active 0 -parent D6AA8CC0-30A8-44E4-A888-8846C0E87BF4
|
||||
File ::31868F32-6F31-406A-8C7E-6B370BDBBDAB -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/all-wcprops -type file -parent 883EF532-9BF8-4D00-A4E6-5292136325BB
|
||||
File ::39EB5783-E680-404B-A78A-EEC0922174D4 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/entries -type file -parent 883EF532-9BF8-4D00-A4E6-5292136325BB
|
||||
File ::6ECCB885-1AFB-47BF-8EA3-664CBB7413B7 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/format -type file -parent 883EF532-9BF8-4D00-A4E6-5292136325BB
|
||||
File ::1340DE6A-EE01-4BB3-BB96-7F90CB708462 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/prop-base -type dir -parent 883EF532-9BF8-4D00-A4E6-5292136325BB
|
||||
File ::9BDD322D-5B38-4CBC-B1F7-8C6C881C7399 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/prop-base/1.jpg.svn-base -type file -parent 1340DE6A-EE01-4BB3-BB96-7F90CB708462
|
||||
File ::0FF54FBC-F648-44E3-891C-E268DA2F6DAA -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/prop-base/2.jpg.svn-base -type file -parent 1340DE6A-EE01-4BB3-BB96-7F90CB708462
|
||||
File ::14FE1FD3-84DA-44C4-AAE6-BCB2EADEE275 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/prop-base/3.jpg.svn-base -type file -parent 1340DE6A-EE01-4BB3-BB96-7F90CB708462
|
||||
File ::31B8D31F-2C78-480E-8C3B-1967205B082A -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/prop-base/4.jpg.svn-base -type file -parent 1340DE6A-EE01-4BB3-BB96-7F90CB708462
|
||||
File ::309AD9FA-4F07-4894-95B0-2E519550190F -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/prop-base/5.jpg.svn-base -type file -parent 1340DE6A-EE01-4BB3-BB96-7F90CB708462
|
||||
File ::AD7E6DDA-BEB8-4546-984B-7C8BFC0EC5FF -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/prop-base/6.jpg.svn-base -type file -parent 1340DE6A-EE01-4BB3-BB96-7F90CB708462
|
||||
File ::A60D9C46-29F7-4D94-AA48-36B1EF3BD3D1 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/props -type dir -parent 883EF532-9BF8-4D00-A4E6-5292136325BB
|
||||
File ::3C8040C8-3B5F-4F49-B91B-9E827DB6F598 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/text-base -type dir -parent 883EF532-9BF8-4D00-A4E6-5292136325BB
|
||||
File ::CD7E1DFF-282C-48A3-A315-7C73423A99DF -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/text-base/1.jpg.svn-base -type file -parent 3C8040C8-3B5F-4F49-B91B-9E827DB6F598
|
||||
File ::3FB8F0C4-822C-4CAD-A062-D0A2D72879A4 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/text-base/2.jpg.svn-base -type file -parent 3C8040C8-3B5F-4F49-B91B-9E827DB6F598
|
||||
File ::55F19EC5-C194-48D1-B881-19F944E36091 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/text-base/3.jpg.svn-base -type file -parent 3C8040C8-3B5F-4F49-B91B-9E827DB6F598
|
||||
File ::14EF5E72-CE97-47D6-BF5D-576656366594 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/text-base/4.jpg.svn-base -type file -parent 3C8040C8-3B5F-4F49-B91B-9E827DB6F598
|
||||
File ::55ED3A31-48C5-4878-88DC-520CBA91EC0E -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/text-base/5.jpg.svn-base -type file -parent 3C8040C8-3B5F-4F49-B91B-9E827DB6F598
|
||||
File ::A0D514CA-79E8-41E6-B85E-AEDD536489B1 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/text-base/6.jpg.svn-base -type file -parent 3C8040C8-3B5F-4F49-B91B-9E827DB6F598
|
||||
File ::12D9439E-9791-40FB-BD1D-3D7E312DD8C7 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/tmp -type dir -parent 883EF532-9BF8-4D00-A4E6-5292136325BB
|
||||
File ::CF764A0F-49AD-447B-869D-D118C32B456B -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/tmp/prop-base -type dir -parent 12D9439E-9791-40FB-BD1D-3D7E312DD8C7
|
||||
File ::9DE2D059-471B-4F73-813D-5AB5635A153D -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/tmp/props -type dir -parent 12D9439E-9791-40FB-BD1D-3D7E312DD8C7
|
||||
File ::771E44E0-A69F-4E9B-BF4C-20E8C60CDF96 -name E:/SVN/pandora/trunk/pandora_agents/win32/bin/help/images/.svn/tmp/text-base -type dir -parent 12D9439E-9791-40FB-BD1D-3D7E312DD8C7
|
||||
File ::824789FD-D251-4D3F-9640-757BF22F2CD0 -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts -type dir -parent AC33C2B4-AB01-4572-802B-BA89E7661C04
|
||||
File ::25DADAAA-7DA2-469C-870D-AD2D6017D46E -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/start_pandora_agent.bat -type file -parent 824789FD-D251-4D3F-9640-757BF22F2CD0
|
||||
File ::E68E6D0D-D735-4116-AA67-21419036343F -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/stop_pandora_agent.bat -type file -parent 824789FD-D251-4D3F-9640-757BF22F2CD0
|
||||
File ::62A39BD6-AC47-477F-9E65-8AD92FF407F1 -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn -type dir -active 0 -parent 824789FD-D251-4D3F-9640-757BF22F2CD0
|
||||
File ::99CF8FA4-5539-44EC-8EB3-2DEC65CB80DC -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/entries -type file -parent 62A39BD6-AC47-477F-9E65-8AD92FF407F1
|
||||
File ::78B5B4E2-13D6-4E13-8F92-D0E6F9AF4042 -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/format -type file -parent 62A39BD6-AC47-477F-9E65-8AD92FF407F1
|
||||
File ::4BB12EC6-8339-425D-946B-622561363A17 -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/prop-base -type dir -parent 62A39BD6-AC47-477F-9E65-8AD92FF407F1
|
||||
File ::A6C56F4E-727B-45C7-BDCF-CB11BF3FA9A6 -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/props -type dir -parent 62A39BD6-AC47-477F-9E65-8AD92FF407F1
|
||||
File ::46700D4F-A08E-455E-8E3E-B4020A9039A5 -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/text-base -type dir -parent 62A39BD6-AC47-477F-9E65-8AD92FF407F1
|
||||
File ::5AFB52B6-9EB7-42B7-90C9-3CECF1D319AE -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/tmp -type dir -parent 62A39BD6-AC47-477F-9E65-8AD92FF407F1
|
||||
File ::8A3DE19D-DCEA-4A33-9E80-0BA1E4C66A7D -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/tmp/prop-base -type dir -parent 5AFB52B6-9EB7-42B7-90C9-3CECF1D319AE
|
||||
File ::4FA54FEC-F78D-49B3-9E7F-841191A450B1 -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/tmp/props -type dir -parent 5AFB52B6-9EB7-42B7-90C9-3CECF1D319AE
|
||||
File ::1DC34198-0014-4DD4-ABF6-D1785794DC3E -name E:/SVN/pandora/trunk/pandora_agents/win32/installer/scripts/.svn/tmp/text-base -type dir -parent 5AFB52B6-9EB7-42B7-90C9-3CECF1D319AE
|
||||
Component ::10A1AE8A-A5C5-4F0E-8D15-FC176DF534B0 -setup Install -type component -active Yes -platforms {Linux-x86 Windows} -name Instalable -parent Components
|
||||
SetupType ::7080336B-65E6-4818-9201-068FFEA6FB3A -setup Install -type setuptype -active Yes -platforms Windows -name Typical -parent SetupTypes
|
||||
|
||||
|
@ -1270,7 +1174,7 @@ Windows,BuildType
|
|||
{}
|
||||
|
||||
Windows,Executable
|
||||
Pandora_FMS_Windows_Agent-<%Version%>-Setup<%Ext%>
|
||||
Pandora_Windows_Agent-<%Version%>-Setup<%Ext%>
|
||||
|
||||
Windows,IncludeTWAPI
|
||||
No
|
||||
|
|
Loading…
Reference in New Issue