ldapmodify revision 8cf870d281dc8c242f083d14dfef05f24aa5fcee
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#!/bin/sh
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# CDDL HEADER START
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# The contents of this file are subject to the terms of the
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# Common Development and Distribution License, Version 1.0 only
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# (the "License"). You may not use this file except in compliance
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# with the License.
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# or http://forgerock.org/license/CDDLv1.0.html.
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# See the License for the specific language governing permissions
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# and limitations under the License.
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# When distributing Covered Code, include this CDDL HEADER in each
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# file and include the License file at legal-notices/CDDLv1_0.txt.
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# If applicable, add the following below this CDDL HEADER, with the
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# fields enclosed by brackets "[]" replaced with your own identifying
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# information:
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# Portions Copyright [yyyy] [name of copyright owner]
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# CDDL HEADER END
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#
671242f350d172e106580348e24bab66b0d7e6a5vboxsync#
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# Copyright 2006-2008 Sun Microsystems, Inc.
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# Portions Copyright 2011 ForgeRock AS
671242f350d172e106580348e24bab66b0d7e6a5vboxsync
671242f350d172e106580348e24bab66b0d7e6a5vboxsync
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# This script may be used to perform LDAP add, delete, modify, and modify DN
671242f350d172e106580348e24bab66b0d7e6a5vboxsync# operations.
671242f350d172e106580348e24bab66b0d7e6a5vboxsyncOPENDJ_INVOKE_CLASS="org.opends.server.tools.LDAPModify"
671242f350d172e106580348e24bab66b0d7e6a5vboxsyncexport OPENDJ_INVOKE_CLASS
671242f350d172e106580348e24bab66b0d7e6a5vboxsync
671242f350d172e106580348e24bab66b0d7e6a5vboxsyncSCRIPT_NAME="ldapmodify"
671242f350d172e106580348e24bab66b0d7e6a5vboxsyncexport SCRIPT_NAME
671242f350d172e106580348e24bab66b0d7e6a5vboxsync
671242f350d172e106580348e24bab66b0d7e6a5vboxsyncSCRIPT_DIR=`dirname "${0}"`
671242f350d172e106580348e24bab66b0d7e6a5vboxsync"${SCRIPT_DIR}/../lib/_client-script.sh" "${@}"
671242f350d172e106580348e24bab66b0d7e6a5vboxsync