File: README.Packaging

package info (click to toggle)
fusioninventory-agent 1%3A2.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 25,468 kB
  • sloc: perl: 110,993; xml: 9,459; sh: 280; python: 26; makefile: 12
file content (70 lines) | stat: -rw-r--r-- 2,423 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70

For Linux/Unix platforms packaging only:

FusionInventory Agent should be installed as systemd service by default.

By default, service will fail until agent configuration includes a server target
configuration or a local target configuration.

The default configuration should use the new "include" directive so any *.cfg file
from /etc/fusioninventory/conf.d folder is read to update default options values.

Then the best way to configure a target will be to create a dedicated .cfg file
in /etc/fusioninventory/conf.d folder. As example, users would have to create a
simple glpi.cfg file set with the following:

# GLPI server
server = http://glpi-server/plugins/fusioninventory

Or for a local inventory:

# Local inventory folder
local = /var/lib/fusioninventory-agent

If "include" directive is enabled at the end of default configuration, any
new definition set in included file(s) will just override defaults, so as example
anyone can just enable debug level 1 option and set tag adding the following to a
cfg file or adding it in a newer cfg file like this:

debug = 1
tag = hosting

Be aware, files in /etc/fusioninventory/conf.d folder would be read in alphabetic
order and last value for a specific option will be used for the option.

===

Default logger configuration is to log on stderr. Packagers should prefer the
agent to use system logging feature while installed as service and setting the
following in installed default configuration file:
logger = syslog
logfacility = LOG_DAEMON

===

During packaging, it is also advised to override lib/FusionInventory/Agent/Version.pm
module so agent version matches the package version. Packagers should also add
their own useful comments in the $COMMENTS perl array ref to help maintainers
to identify the package building source. As example, the module can be set to:
package FusionInventory::Agent::Version;

use strict;
use warnings;

our $VERSION = "2.4.2-1";
our $PROVIDER = "FusionInventory";
our $COMMENTS = [ "My distro package built on some computer", "Built on that date" ];

1;

===

During packaging, it is also advised to override lib/setup.pm module so datadir,
libdir and vardir perl variables match the system preferences for these folders.
The default setup.pm is defined to compute most well-known case with a very light
overhead.

===

Review our mandatory Linux packaging page:
http://fusioninventory.org/documentation/packaging/linux.html