ipa-ldap-updater

Langue: en

Version: Sep 12 2008 (fedora - 04/07/09)

Section: 1 (Commandes utilisateur)

NAME

ipa-ldap-updater - Update the IPA LDAP configuration

SYNOPSIS

ipa-ldap-updater [options] input_file(s) ipa-ldap-updater [options]

DESCRIPTION

Run with no file arguments, ipa-ldap-updater will process all files with the extension .update in /usr/share/ipa/updates.

An update file describes an LDAP entry and a set of operations to be performed on that entry. It can be used to add new entries or modify existing entries. It cannot remove entries, just specific values in a given attribute.

Blank lines and lines beginning with # are ignored.

There are 4 keywords:


    * default: the starting value
    * add: add a value (or values) to an attribute
    * remove: remove a value (or values) from an attribute
    * only: set an attribute to this 

Values is a comma-separated field so multi-values may be added at one time. Double or single quotes may be put around individual values that contain embedded commas.

The difference between the default and add keywords is if the DN of the entry exists then default is ignored. So for updating something like schema, which will be under cn=schema, you must always use add (because cn=schema is guaranteed to exist). It will not re-add the same information again and again.

It alsos provide some things that can be templated such as architecture (for plugin paths), realm and domain name.

The available template variables are:


    * $REALM - the kerberos realm (EXAMPLE.COM)
    * $FQDN - the fully-qualified domain name of the IPA server being updated (ipa.example.com)
    * $DOMAIN - the domain name (example.com)
    * $SUFFIX - the IPA LDAP suffix (dc=example,dc=com)
    * $LIBARCH - set to 64 on x86_64 systems to be used for plugin paths
    * $TIME - an integer representation of current time 

A few rules:


   1. Only one rule per line
   2. Each line stands alone (e.g. an only followed by an only results in the last only being used)
   3. adding a value that exists is ok. The request is ignored, duplicate values are not added
   4. removing a value that doesn't exist is ok. It is simply ignored.
   5. If a DN doesn't exist it is created from the 'default' entry and all updates are applied
   6. If a DN does exist the default values are skipped
   7. Only the first rule on a line is respected 

OPTIONS

-d, --debug
Enable debug logging when more verbose output is needed
-t, --test
Run through the update without changing anything. If changes are available then the command returns 2. If no updates are available it returns 0.
-y
File containing the Directory Manager password

EXIT STATUS

0 if the command was successful

1 if an error occurred

2 if run with in test mode (-t) and updates are available