pathnames.h revision 120945
11769Sjkh/*
21769Sjkh * Copyright (c) 1989, 1993
31769Sjkh *	The Regents of the University of California.  All rights reserved.
41769Sjkh *
51769Sjkh * Redistribution and use in source and binary forms, with or without
61769Sjkh * modification, are permitted provided that the following conditions
71769Sjkh * are met:
81769Sjkh * 1. Redistributions of source code must retain the above copyright
91769Sjkh *    notice, this list of conditions and the following disclaimer.
101769Sjkh * 2. Redistributions in binary form must reproduce the above copyright
111769Sjkh *    notice, this list of conditions and the following disclaimer in the
121769Sjkh *    documentation and/or other materials provided with the distribution.
131769Sjkh * 3. All advertising materials mentioning features or use of this software
141769Sjkh *    must display the following acknowledgement:
151769Sjkh *	This product includes software developed by the University of
161769Sjkh *	California, Berkeley and its contributors.
171769Sjkh * 4. Neither the name of the University nor the names of its contributors
181769Sjkh *    may be used to endorse or promote products derived from this software
191769Sjkh *    without specific prior written permission.
201769Sjkh *
211769Sjkh * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221769Sjkh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231769Sjkh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241769Sjkh * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251769Sjkh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261769Sjkh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271769Sjkh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281769Sjkh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291769Sjkh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301769Sjkh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311769Sjkh * SUCH DAMAGE.
321769Sjkh *
331769Sjkh *	@(#)pathnames.h	8.1 (Berkeley) 6/4/93
341769Sjkh */
351769Sjkh
363876Sache#ifdef HAVE_PATHS_H
373876Sache#include <paths.h>
383878Sache#endif
393878Sache
403120Sache#ifndef _PATH_DEVNULL
413120Sache#define _PATH_DEVNULL "/dev/null"
423120Sache#endif
435559Sache
443120Sache#ifndef _PATH_NOLOGIN
453120Sache#define _PATH_NOLOGIN "/etc/nologin"
461769Sjkh#endif
475633Sache
483120Sache#ifndef _PATH_BSHELL
493876Sache#define _PATH_BSHELL "/bin/sh"
503876Sache#endif
513876Sache
523623Sache#ifndef _PATH_FTPUSERS
533752Sache#define	_PATH_FTPUSERS		SYSCONFDIR "/ftpusers"
541769Sjkh#endif
551769Sjkh
563623Sache#define	_PATH_FTPCHROOT		SYSCONFDIR "/ftpchroot"
573623Sache#define	_PATH_FTPWELCOME	SYSCONFDIR "/ftpwelcome"
583120Sache#define	_PATH_FTPLOGINMESG	SYSCONFDIR "/motd"
593623Sache
603120Sache#define _PATH_ISSUE		SYSCONFDIR "/issue"
613226Sache#define _PATH_ISSUE_NET		SYSCONFDIR "/issue.net"
623876Sache