| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /** BEGIN COPYRIGHT BLOCK
- * This Program is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation; version 2 of the License.
- *
- * This Program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- /* Header file for protect_db.c */
- int add_new_slapd_process(int exec_mode, int r_flag, int skip_flag);
- int is_slapd_running();
- void remove_slapd_process();
- /*
- * These are the format strings used in the error messages in protect_db.c.
- * After each string is a short description of what gets inserted into the
- * string.
- */
- #define ERROR_ACCESSING_LOCKFILE "Error - Problem accessing the lockfile %s\n"
- /* name of lockfile */
- #define LOCKFILE_DEAD_OWNER "Error - The lockfile, %s, is held by process %d,\nwhich no longer seems to be running. If this is\nthe case, please remove the lockfile\n"
- /* name of lockfile, pid of owning process */
- #define UNABLE_TO_GET_LOCKFILE "Error - Unable to acquire the lockfile, %s.\nPlease make sure no instances of the ns-slapd process are running, remove the lockfile and try again\n"
- /* name of lockfile */
- #define LOCKFILE_ALREADY_OWNED "Error - Unable to start because process %d holds a lock.\nPlease make sure that the process is running correctly\nIf it is not, kill it and try again.\n"
- /* pid of owning process */
- #define FILE_CREATE_ERROR "Error - Unable to create %s, " SLAPI_COMPONENT_NAME_NSPR " error %d (%s)\n"
- /* name of file */
- #define FILE_CREATE_WARNING "Warning - Unable to create %s\n"
- /* name of file */
- #define GETPWNAM_WARNING "Warning - Unable to find user %s in system account database, errno %d (%s)\n"
- /* user name, error code, error message */
- #define CHOWN_WARNING "Warning - couldn't set the ownership for %s\n"
- /* file name */
- #define NO_SERVER_DUE_TO_SERVER "Unable to start slapd because it is already running as process %d\n"
- /* pid of running slapd process */
- #define NO_SERVER_DUE_TO_IMPORT "Unable to start slapd because a database is being imported by process %d\n"
- /* pid of importing process */
- #define NO_SERVER_DUE_TO_USE "Unable to start slapd because the database is in use\nby another slapd process\n"
- #define NO_DB2LDIFR_DUE_TO_USE "Unable to run db2ldif with the -r flag because the database is being used by another slapd process.\n"
- #define NO_DB2LDIF_DUE_TO_IMPORT "Unable to run db2ldif because the process %d is importing the database.\n"
- /* pid of importing process */
- #define NO_DB2BAK_DUE_TO_IMPORT "Unable to run db2bak because the process %d is importing the database.\n"
- /* pid of importing process */
- #define NO_EXPORT_DUE_TO_IMPORT "Unable to export the database because it is being imported.\n"
- #define NO_IMPORT_DUE_TO_USE "Unable to import the database because it is being used by another slapd process.\n"
- #define NO_DBTEST_DUE_TO_USE "Unable to test the database because it is being used by another slapd process.\n"
- #define NO_DB2INDEX_DUE_TO_USE "Unable to create an index because the database is being used by another slapd process.\n"
- #define NO_UPGRADEDB_DUE_TO_USE "Unable to recreate index files because the database is being used by another slapd process.\n"
- #define CREATE_MUTEX_ERROR "Error - CreateMutex failed: %s\n"
- /* reason for failure */
- #define WAIT_ERROR "Error - wait failed: %s\n"
- /* reason for failure */
|