func

Langue: en

Version: 2009-01-30 (fedora - 04/07/09)

Section: 1 (Commandes utilisateur)

NAME

Func -- Fedora Unified Network Controller.

SYNOPSIS

func ``*'' list_minions

func target.example.org call module method [args ...]

func ``target*.example.org'' call module method [args ...]

func ``webserver1;mailserver2'' call module method [args ...]

DESCRIPTION

``func'' allows remote control of machines running funcd (called ``minions'') that are set to obey this machine (called the ``overlord''). This includes performing various remote operations and gathering data.

``func'' can address multiple machines at the same time by specifying their names with globs, which follow shell glob syntax.

Groups of machines can also be specified in /etc/func/groups. To invoke func on a group of machines specifying ``@groupname''.

See the project homepage (below) for a list of modules available and a more in-depth description of what each of them do.

THE CALL MODULE

The ``call'' module is used for running func modules remotely.

Format: func ``*.example.org'' call <module> <function> [ args ... ]

LISTING REMOTE MODULES AVAILABLE

It's possible to ask func minions what modules they have installed:

func ``*.example.org'' call system list_modules

LISTING REMOTE FUNCTIONS AVAILABLE IN A MODULE

It is also possible to ask remote func modules what functions they support:

func target.example.org call modulename list_methods

CALLING A REMOTE COMMAND

Once you have the name of a module you want to run, use call to invoke it:

func target.example.org call modulename methodname

OUTPUT FORMATS

The ``call'' command by default outputs data using a ``pretty printer''. Other display options include --raw, --json, and --xmlrpc, which may be more desirable if you are running func inside another script or prefer to read those display formats.

Example: func ``*'' call --json service inventory

HELPER MODULES

In addition to ``call'', there are other modules that make control of remote machines, as well as data display, more user friendly. They augment ``call'' by providing some additional functionality.

You will notice that the syntax for using one of these helper modules varies slightly from just using ``call'' directly.

For example ``show'' can be used to show remote data. The normal command "func '*' command would dump a very large amount of data, while the show command can mine only a few details. This might make things more readable, for instance, when not going through the Python API (where you would not care).

func ``*.example.org'' show hardware --help

func ``*.example.org'' show hardware systemMemory

func ``*.example.org'' show hardware os

Another useful helper command module is copyfile, which allows func to work like scp from the shell, though it can address multiple systems at the same time.

The following example pushes one file out to multiple systems:

func ``*.example.org'' copyfile --file=/tmp/foo --remotepath=/tmp/foo

While these helper modules will grow over time, usage of ``call'' syntax directly is fine also. See the Wiki for more examples as they evolve.

--verbose

Use this flag to output extra information from func while it is running. All func commands can take this flag.

EXIT_STATUS

Func commands have return values that vary based on the module being called. See the project page (linked below) for more information.

ADDITONAL RESOURCES

See https://fedorahosted.org/func/ for more information, including information on scripting func from Python.

See also the manpages for ``func-inventory'', ``funcd'', ``certmaster'', ``certmaster-ca'', and ``func-transmit''.

AUTHOR

Various. See https://fedorahosted.org/func/