~ubuntu-branches/ubuntu/trusty/landscape-client/trusty-proposed

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
== Non-root mode ==

The Landscape Client generally runs as a combination of the 'root' and
'landscape' users.  It is possible to disable the administrative features of
Landscape and run only the monitoring parts of it without using the 'root'
user at all.

If you wish to use the Landscape Client in this way, it's recommended that you
perform these steps immediately after installing the landscape-client package.

Edit /etc/default/landscape-client and add the following lines:

  RUN=1
  DAEMON_USER=landscape

Edit /etc/landscape/client.conf and add the following line:

  monitor_only = true

Now you can run 'sudo landscape-config' as usual to complete the configuration
of your client and register with the Landscape service.


== Developing ==

To run the full test suite, you must have a dbus session bus
running. If you don't have one (for example, if you're running the
tests in an ssh session), run the following command:

export DBUS_SESSION_BUS_ADDRESS=`dbus-daemon --print-address=1 --session --fork`

Then your tests should pass.

When you want to test the landscape client manually without management
features, you can simply run:

$ ./scripts/landscape-client

This defaults to the 'landscape-client.conf' configuration file.

When you want to test management features manually, you'll need to run as root.
There's a configuration file 'root-client.conf' which specifies use of the
system bus.

$ sudo ./scripts/landscape-client -c root-client.conf