X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=blobdiff_plain;f=README;h=e9578012ce00157679918eaa77b718f6a500b6c7;hp=20cbce9a8e3160fa0b5c127c0b24aa92b6ac2396;hb=7bb760247e39c8e46f57fb5cc5e6cdbe4833fe7b;hpb=bf3b8e60b2fdc493c4e04b05ce67abf69ca9a4ff diff --git a/README b/README index 20cbce9..e957801 100644 --- a/README +++ b/README @@ -1,45 +1,98 @@ - syscollector -- a system management / inventory collection service - ==================================================================== - - “System Collector” (syscollector) is a multi-backend system management and - inventory collection service. It may be used to collect information from - various backends (inventory services, monitoring services, etc.) and - provides a unique interface to access the information independent of the - active backends. This is done by mapping the backend objects to generic - objects and correlating the attributes to create a single hierarchy of your - infrastructure. - - This is free and open source software, licensed under the 2-clause BSD + SysDB -- a system management and inventory collection service + =============================================================== + + “System DataBase” (SysDB) is a multi-backend system management and inventory + collection service. It may be used to (continuously) collect information + about your systems from various backends (inventory services, monitoring + services, etc.) and provides a unique interface to access the information + independent of the active backends. This is done by storing and mapping the + backend objects to generic objects and correlating the attributes to create + a single hierarchical view of your infrastructure. + + SysDB is free and open source software, licensed under the 2-clause BSD license. See COPYING for details. Prerequisites ------------- - To compile the syscollector package from source you need: + To compile the SysDB package from source you need: * A build environment: autotools, libtool, C compiler, ... + + + + + + + * When building from Git, you also need the flex lexical analyzer generator + and bison parser generator (other lex and yacc compatible tools might work + as well if you are lucky). + + + + * A POSIX + Single UNIX Specification compatible C library. - * asciidoc, xsltproc: + + + * asciidoc, xsltproc, xmlto: The AsciiDoc text document format is used to write the manpages. + + + + + * libedit or libreadline: + A readline compatible command line editor and history library is used for + handling input in the sysdb client program. + + + + + The following optional libraries may be used by various plugins: + + * libdbi: + The database independent abstraction layer is used for database access by + the puppet::store-configs plugin. + + + +Testing +------- + + Unit tests for SysDB are shipped along with the source code in the ‘t’ + subdirectory. Run ‘make test’ to run all available tests. + + Some tests require the ‘fopencookie’ function as provided by the GNU libc + library. It used used to mock I/O related functions. In case this function + is not available, the respective tests will be disabled automatically. + + For the latest build status, see: + + + Code coverage testing using Gcov may be enabled when using the + ‘--enable-gcov’ configure option. + + For the latest coverage report, see: + + Configuring / Compiling / Installing ------------------------------------ - To configure, build and install syscollector with the default settings, run - `./configure && make && make install'. For detailed, generic instructions + To configure, build and install SysDB with the default settings, run + ‘./configure && make && make install’. For detailed, generic instructions see INSTALL. For a complete list of configure options and their description, - run `./configure --help'. + run ‘./configure --help’. - By default, syscollector will be installed into `/opt/syscollector'. You can - adjust this setting by specifying the `--prefix' configure option - see - INSTALL for details. If you pass DESTDIR= to `make install', - will be prefixed to all installation directories. This might be useful when - creating packages for syscollector. + By default, SysDB will be installed into ‘/opt/sysdb’. You can adjust this + setting by specifying the ‘--prefix’ configure option - see INSTALL for + details. If you pass DESTDIR= to ‘make install’, will be + prefixed to all installation directories. This might be useful when creating + packages for SysDB. Author ------ - Sebastian "tokkee" Harl + Sebastian “tokkee” Harl