summaryrefslogtreecommitdiffstats
path: root/doc/server/plugins/probes/index.txt
blob: 33ec6f444d6a99fab362510177f091ae3d2355f6 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
.. -*- mode: rst -*-

.. _server-plugins-probes-index:

======
Probes
======

At times you need to gather information from a client machine before you
can generate its configuration. For example, if some of your machines
have both a local scratch disk and a system disk while others only have
the system disk, you would want to know this information to correctly
generate an `/etc/auto.master` autofs config file for each type. Here
we will look at how to do this.

For the purposes of this example, you will need to set up the TCheetah
plugin, as described on the :ref:`server-plugins-generators-tcheetah`
page.

.. note::

    This does **not** mean that TCheetah is required in order for Probes
    to operate properly.

Next, we need to create a ``Probes`` directory in our toplevel repository
location::

    mkdir /var/lib/bcfg2/Probes

This directory will hold any small scripts we want to use to grab
information from client machines.  These scripts can be in any scripting
language; the shebang line (the ``#!/usr/bin/env some_interpreter_binary``
line at the very top of the script) is used to determine the script's
interpreter.

.. note::

    Bcfg2 uses python mkstemp to create the Probe scripts on the
    client. If your /tmp directory is mounted **noexec**, you will
    likely need to modify the TMPDIR environment variable so that the
    bcfg2 client creates the temporary files in a directory from which
    it can execute.

Now we need to figure out what exactly we want to do.  In this case,
we want to hand out an ``/etc/auto.master`` file that looks like::

    /software  /etc/auto.software --timeout 3600
    /home      /etc/auto.home --timeout 3600
    /hometest  /etc/auto.hometest --timeout 3600
    /nfs       /etc/auto.nfs --timeout 3600
    /scratch   /etc/auto.scratch --timeout 3600

for machines that have a scratch disk. For machines without an extra disk,
we want to get rid of that last line::

    /software  /etc/auto.software --timeout 3600
    /home      /etc/auto.home --timeout 3600
    /hometest  /etc/auto.hometest --timeout 3600
    /nfs       /etc/auto.nfs --timeout 3600

So, from the Probes standpoint we want to create a script that counts
the number of SCSI disks in a client machine. To do this, we create a
very simple ``Probes/scratchlocal`` script::

    cat /proc/scsi/scsi | grep Vendor | wc -l

Running this on a node with *n* disks will return the number *n+1*, as
it also counts the controller as a device. To differentiate between the
two classes of machines we care about, we just need to check the output
of this script for numbers greater than 2. We do this in the template.

The ``TCheetah/`` directory is laid out much like the ``Cfg/`` directory.
For this example we will want to create a ``TCheetah/etc/auto.master``
directory to hold the template of the file in question. Inside of this
template we will need to check the result of the Probe script that
got run and act accordingly. The ``TCheetah/etc/auto.master/template``
file looks like::

    /software  /etc/auto.software --timeout 3600
    /home      /etc/auto.home --timeout 3600
    /hometest  /etc/auto.hometest --timeout 3600
    /nfs       /etc/auto.nfs --timeout 3600
    #if int($self.metadata.Probes["scratchlocal"]) > 2
    /scratch   /etc/auto.scratch --timeout 3600
    #end if

Any Probe script you run will store its output in
``$self.metadata.Probes["scriptname"]``, so we get to our `scratchlocal`
script's output as seen above.  Note that we had to wrap the output in an
`int()` call; the script output is treated as a string, so it needs to
be converted before it can be tested numerically.

With all of these pieces in place, the following series of events will
happen when the client is run:

#. Client runs
#. Server hands down our ``scratchlocal`` probe script
#. Client runs the ``scratchlocal`` probe script and hands its output
   back up to the server
#. Server generates ``/etc/auto.master`` from its template, performing
   any templating substitutions/actions needed in the process.
#. Server hands ``/etc/auto.master`` down to the client
#. Client puts file contents in place.

Now we have a nicely dynamic ``/etc/auto.master`` that can gracefully
handle machines with different numbers of disks. All that's left to do
is to add the ``/etc/auto.master`` to a Bundle:

.. code-block:: xml

    <Path name='/etc/auto.master'/>

Host and Group Specific probes
==============================

Bcfg2 has the ability to alter probes based on client hostname and group
membership. These files work similarly to files in Cfg.

If multiple files with the same basename apply to a client, the most
specific one is used. Only one instance of a probe is served to a given
client, so if a host-specific version and generic version apply, only
the client-specific one will be used.

If you want to to detect information about the client operating system,
the :ref:`server-plugins-probes-ohai` plugin can help.


Other examples
==============

.. toctree::
   :maxdepth: 1

   current-kernel
   group
   vserver
   grub-serial-order
   manufacturer
   producttype
   serial-console-speed

.. toctree::
   :hidden:

   ohai