1 /* $NetBSD: pathnames.h,v 1.1.1.2 2012/09/09 16:07:56 christos Exp $ */ 2 3 /* 4 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") 5 * Copyright (c) 1996,1999 by Internet Software Consortium. 6 * 7 * Permission to use, copy, modify, and distribute this software for any 8 * purpose with or without fee is hereby granted, provided that the above 9 * copyright notice and this permission notice appear in all copies. 10 * 11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES 12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR 14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 18 */ 19 20 /* 21 * Id: pathnames.h,v 1.3 2005/04/27 04:56:34 sra Exp 22 */ 23 24 #ifndef _PATH_IRS_CONF 25 #define _PATH_IRS_CONF "/etc/irs.conf" 26 #endif 27 28 #ifndef _PATH_NETWORKS 29 #define _PATH_NETWORKS "/etc/networks" 30 #endif 31 32 #ifndef _PATH_GROUP 33 #define _PATH_GROUP "/etc/group" 34 #endif 35 36 #ifndef _PATH_NETGROUP 37 #define _PATH_NETGROUP "/etc/netgroup" 38 #endif 39 40 #ifndef _PATH_SERVICES 41 #define _PATH_SERVICES "/etc/services" 42 #endif 43 44 #ifdef IRS_LCL_SV_DB 45 #ifndef _PATH_SERVICES_DB 46 #define _PATH_SERVICES_DB _PATH_SERVICES ".db" 47 #endif 48 #endif 49 50 #ifndef _PATH_HESIOD_CONF 51 #define _PATH_HESIOD_CONF "/etc/hesiod.conf" 52 #endif 53 54 /*! \file */ 55