import-ldif revision 4edb61f8b0f8ce9f62d803c706612376498672b4
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington#!/bin/sh
6283056805887de88040698685b8e1936a1f7a2dAutomatic Updater#
75c0816e8295e180f4bc7f10db3d0d880383bc1cMark Andrews# CDDL HEADER START
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein#
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# The contents of this file are subject to the terms of the
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# Common Development and Distribution License, Version 1.0 only
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# (the "License"). You may not use this file except in compliance
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# with the License.
8a66318e41ed14c5a88130e8c362610e8faa2121Mark Andrews#
8a66318e41ed14c5a88130e8c362610e8faa2121Mark Andrews# You can obtain a copy of the license at
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# trunk/opends/resource/legal-notices/OpenDS.LICENSE
8a66318e41ed14c5a88130e8c362610e8faa2121Mark Andrews# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
8a66318e41ed14c5a88130e8c362610e8faa2121Mark Andrews# See the License for the specific language governing permissions
8a66318e41ed14c5a88130e8c362610e8faa2121Mark Andrews# and limitations under the License.
8a66318e41ed14c5a88130e8c362610e8faa2121Mark Andrews#
0b062f4990db5cc6db2fe3398926f71b92a67407Brian Wellington# When distributing Covered Code, include this CDDL HEADER in each
6283056805887de88040698685b8e1936a1f7a2dAutomatic Updater# file and include the License file at
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# add the following below this CDDL HEADER, with the fields enclosed
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# by brackets "[]" replaced with your own identifying * information:
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# Portions Copyright [yyyy] [name of copyright owner]
e21a2904f02a03fa06b6db04d348f65fe9c67b2bMark Andrews#
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# CDDL HEADER END
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein#
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews#
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# Portions Copyright 2006 Sun Microsystems, Inc.
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# This script may be used to import LDIF data into a Directory Server backend.
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob AusteinOPENDS_INVOKE_CLASS="org.opends.server.tools.ImportLDIF"
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austeinexport OPENDS_INVOKE_CLASS
6283056805887de88040698685b8e1936a1f7a2dAutomatic Updater
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob AusteinSCRIPT_DIR=`dirname "${0}"`
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein"${SCRIPT_DIR}/_server-script.sh" "${@}"
6283056805887de88040698685b8e1936a1f7a2dAutomatic Updater