pathnames.h revision 178826
155714Skris/*
2109998Smarkm * Copyright (c) 1989, 1993
3109998Smarkm *	The Regents of the University of California.  All rights reserved.
4109998Smarkm *
5109998Smarkm * Redistribution and use in source and binary forms, with or without
6109998Smarkm * modification, are permitted provided that the following conditions
7109998Smarkm * are met:
8109998Smarkm * 1. Redistributions of source code must retain the above copyright
9109998Smarkm *    notice, this list of conditions and the following disclaimer.
10109998Smarkm * 2. Redistributions in binary form must reproduce the above copyright
11109998Smarkm *    notice, this list of conditions and the following disclaimer in the
12109998Smarkm *    documentation and/or other materials provided with the distribution.
13109998Smarkm * 3. All advertising materials mentioning features or use of this software
14109998Smarkm *    must display the following acknowledgement:
15109998Smarkm *	This product includes software developed by the University of
16109998Smarkm *	California, Berkeley and its contributors.
17109998Smarkm * 4. Neither the name of the University nor the names of its contributors
18109998Smarkm *    may be used to endorse or promote products derived from this software
19109998Smarkm *    without specific prior written permission.
20109998Smarkm *
21109998Smarkm * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22109998Smarkm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23109998Smarkm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24109998Smarkm * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25109998Smarkm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26109998Smarkm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27109998Smarkm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28109998Smarkm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29109998Smarkm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30109998Smarkm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31109998Smarkm * SUCH DAMAGE.
32109998Smarkm *
33109998Smarkm *	@(#)pathnames.h	8.1 (Berkeley) 6/4/93
34109998Smarkm */
35109998Smarkm
36109998Smarkm#ifdef HAVE_PATHS_H
37109998Smarkm#include <paths.h>
38109998Smarkm#endif
39109998Smarkm
40109998Smarkm#ifndef _PATH_DEVNULL
41109998Smarkm#define _PATH_DEVNULL "/dev/null"
42109998Smarkm#endif
43109998Smarkm
44109998Smarkm#ifndef _PATH_NOLOGIN
45109998Smarkm#define _PATH_NOLOGIN "/etc/nologin"
46109998Smarkm#endif
47109998Smarkm
48109998Smarkm#ifndef _PATH_BSHELL
49109998Smarkm#define _PATH_BSHELL "/bin/sh"
50109998Smarkm#endif
51109998Smarkm
52109998Smarkm#ifndef _PATH_FTPUSERS
53109998Smarkm#define	_PATH_FTPUSERS		SYSCONFDIR "/ftpusers"
54109998Smarkm#endif
5555714Skris
56109998Smarkm#define	_PATH_FTPCHROOT		SYSCONFDIR "/ftpchroot"
57109998Smarkm#define	_PATH_FTPWELCOME	SYSCONFDIR "/ftpwelcome"
5855714Skris#define	_PATH_FTPLOGINMESG	SYSCONFDIR "/motd"
5955714Skris
6055714Skris#ifndef _PATH_ISSUE
6155714Skris#define _PATH_ISSUE		SYSCONFDIR "/issue"
6255714Skris#endif
6355714Skris#define _PATH_ISSUE_NET		SYSCONFDIR "/issue.net"
6455714Skris