Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

glpi / Vigilo / VigiloSoftwareList.php @ b204adb9

History | View | Annotate | Download (3.46 KB)

1
<?php
2
function getSoftwareList($computer)
3
{
4
    return array('httpd'       =>array("addHTTPTest",array()), //http Apache server of CentOS
5
           'apache2'     =>array("addHTTPTest",array()), //http Apache server
6
           'aolserver-4' =>array("addHTTPTest",array()), //AOL web server
7
           'gunicorn'    =>array("addHTTPTest",array()), //Event-based HTTP/WSGI server
8
           'ebhttpd'     =>array("addHTTPTest",array()), //Specialized HTTP server to access CD-ROM books
9
           'lighttpd'    =>array("addHTTPTest",array()), //Fast webserver with minimal memory footprint
10
           'micro-httpd' =>array("addHTTPTest",array()), //Really small HTTP server
11
           'nghttp2'     =>array("addHTTPTest",array()), //nghttp HTTP 2.0 servers
12
           'nginx'       =>array("addHTTPTest",array()), //Small, powerful, scalable web/proxy server
13
           'webfs'       =>array("addHTTPTest",array()), //Lightweight HTTP server for static content
14
           'yaws'        =>array("addHTTPTest",array()), //High performance HTTP 1.1 webserver written by Erlang
15
           'elserv'      =>array("addHTTPTest",array()), //HTTP server that runs on Emacsen
16
           'thin'        =>array("addHTTPTest",array()), //Fast and very simple Ruby web server
17
           'webdis'      =>array("addHTTPTest",array()), //Web server providing an HTTP interface to Redis
18
           //'ntp'=>array("addNTPTest",array()), //Network Time Protocol deamon and utility programs
19

    
20
           'vigilo-connector-metro'     =>array("addVigiloConnectorTest",array("metro")), //Vigilo module receiving and stocking metrology data
21
           'vigilo-connector-nagios'    =>array("addVigiloConnectorTest",array("nagios")), //Vigilo module sharing data with Nagios
22
           'vigilo-connector-syncevent' =>array("addVigiloConnectorTest",array("syncevent")),
23
           'vigilo-connector-vigiconf'  =>array("addVigiloConnectorTest",array("vigiconf")),
24

    
25
           'nagios'   =>array("addNagiosTest",array()), //Host/service/network monitoring and management system for CentOS
26
           'nagios3'  =>array("addNagiosTest",array()), //Host/service/network monitoring and management system for Debian
27

    
28
           'memcached' =>array("addMemcachedTest",array($computer)), //High-performance memory object caching system
29
           'yrmcds'    =>array("addMemcachedTest",array($computer)), //Memory object caching system with master/slave replication and server-side locking.
30

    
31
           'openssh-server'    =>array("addSSHTest",array()), //Secure shell (SSH) server, for secure access from remote machines
32
           'ssh'               =>array("addSSHTest",array()), //Secure shell client and server (metapackage)
33

    
34
           'mariadb-server'  =>array("addPGSQLTest",array($computer)), //MariaDB database server
35
           'mysql-server'    =>array("addPGSQLTest",array($computer)), //MySQL database server
36

    
37
           'micro-proxy'   =>array("addProxyTest",array($computer)), //Really small HTTP/HTTPS proxy
38
           'ntlmaps'       =>array("addProxyTest",array($computer)), //NTLM Authorization Proxy Server
39
           'privoxy'       =>array("addProxyTest",array($computer)), //Privacy enhancing HTTP Proxy
40
           'squid3'        =>array("addProxyTest",array($computer)), //Full featured Web Proxy cache (HTTP proxy)
41
           'tinyproxy'     =>array("addProxyTest",array($computer)), //A lightweight, non-caching, optionally anonymizing HTTP proxy
42

    
43
           'rrdcached'     =>array("addRRDcachedTest",array($computer))); //Data caching daemon for RRDtool
44
}