pathnames.h revision 102644
198184Sgordon/*
298184Sgordon * Copyright (c) 1989, 1993
398184Sgordon *	The Regents of the University of California.  All rights reserved.
498184Sgordon *
598184Sgordon * Redistribution and use in source and binary forms, with or without
698184Sgordon * modification, are permitted provided that the following conditions
7208307Sdougb * are met:
898184Sgordon * 1. Redistributions of source code must retain the above copyright
9136224Smtm *    notice, this list of conditions and the following disclaimer.
1098184Sgordon * 2. Redistributions in binary form must reproduce the above copyright
1198184Sgordon *    notice, this list of conditions and the following disclaimer in the
1298184Sgordon *    documentation and/or other materials provided with the distribution.
1398184Sgordon * 3. All advertising materials mentioning features or use of this software
1498184Sgordon *    must display the following acknowledgement:
1598184Sgordon *	This product includes software developed by the University of
1698184Sgordon *	California, Berkeley and its contributors.
1798184Sgordon * 4. Neither the name of the University nor the names of its contributors
1898184Sgordon *    may be used to endorse or promote products derived from this software
19128060Smarkm *    without specific prior written permission.
20128060Smarkm *
2198184Sgordon * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2298184Sgordon * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23128060Smarkm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24128060Smarkm * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25178423Sru * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26178423Sru * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27220153Semaste * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28128060Smarkm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29178423Sru * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30220153Semaste * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31128060Smarkm * SUCH DAMAGE.
3298184Sgordon *
33178423Sru *	@(#)pathnames.h	8.1 (Berkeley) 6/4/93
34220153Semaste */
35128060Smarkm
36178423Sru#ifdef HAVE_PATHS_H
37220153Semaste#include <paths.h>
38128060Smarkm#endif
3998184Sgordon
40178423Sru#ifndef _PATH_DEVNULL
41220153Semaste#define _PATH_DEVNULL "/dev/null"
42128060Smarkm#endif
43178423Sru
44220153Semaste#ifndef _PATH_NOLOGIN
45128060Smarkm#define _PATH_NOLOGIN "/etc/nologin"
46128060Smarkm#endif
47256381Smarkm
48256381Smarkm#ifndef _PATH_BSHELL
49256381Smarkm#define _PATH_BSHELL "/bin/sh"
50256381Smarkm#endif
51256381Smarkm
52128060Smarkm#define	_PATH_FTPUSERS		SYSCONFDIR "/ftpusers"
53256381Smarkm#define	_PATH_FTPCHROOT		SYSCONFDIR "/ftpchroot"
54128060Smarkm#define	_PATH_FTPWELCOME	SYSCONFDIR "/ftpwelcome"
5598184Sgordon#define	_PATH_FTPLOGINMESG	SYSCONFDIR "/motd"
5698184Sgordon
5798184Sgordon#define _PATH_ISSUE		SYSCONFDIR "/issue"
5898184Sgordon#define _PATH_ISSUE_NET		SYSCONFDIR "/issue.net"
5998184Sgordon