blob: 46adb4e7c33fa1ad060f846919a61b7783bb8b31 (
plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
*******************************************************************************
* Cura *
*******************************************************************************
The Cura project provides a common infrastructure for the management of Linux
systems. Capabilities include configuration, management and monitoring of
hardware, operating systems, and system services. Cura includes a set of
services that can be accessed both locally and remotely, multiple language
bindings, standard APIs, and standard scripting interfaces.
*******************************************************************************
* Cura-providers *
*******************************************************************************
cura-providers is set of (usually) small providers (agents) that will provide
given functionality on host system.
Following providers are part of this sub-project:
* Fan
Fan provider implements interface for hardware monitoring of fans
in the system. It uses lm_sensors library so it's linux specific.
There are three interfaces provided according to CIM model:
* Linux_Fan
- Provides instance for every fan founded by lm_sensors with basic
information.
* Linux_FanSensor
- Associated sensor for each instance of Linux_Fan.
- Value of fan speed can be obtained from property CurrentReading.
* Linux_FanAssociatedSensor
- Provides association of instances of above 2 providers.
* Power
Power management provider allows to monitor and change power state of the
computer system.
Support commands:
- halt, reboot, suspend, hibernate
* Service
Provider that allows manipulation with system services.
Supported commands:
- status
- start, stop, restart
- enable, disable
*******************************************************************************
* Build Dependencies *
*******************************************************************************
For all providers:
- konkretcmpi-devel
- sblim-cmpi-devel
Provider specific dependencies:
* Fan
- lm_sensors - installed and configured
- lm_sensors-libs
- lm_sensors-devel
* Power
- glib2-devel
- upower-devel or pm-utils
- shutdown and reboot commands in $PATH (usually provided by
systemd or upstart or SysVinit)
* Service
- chkconfig
- systemd or upstart or SysVinit
*******************************************************************************
* Compilation and installation *
*******************************************************************************
$ mkdir build && cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
$ make
# make install
# make register-Fan
# make register-PowerManagement
# make register-Service
You can disable specific provider by adding -DWITH-<PROVIDER>=0 to cmake line.
|