diff options
author | markm <markm@FreeBSD.org> | 1998-10-08 06:12:04 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1998-10-08 06:12:04 +0000 |
commit | b1bb470bf132f8f6639c4755630dad6f2398c082 (patch) | |
tree | 4295303aca32e2f7c0ffc784ffc9f83a427b7450 /etc | |
parent | 68c2a3a49f42d22bb053c3ed9db2292d25a7d5e3 (diff) | |
download | FreeBSD-src-b1bb470bf132f8f6639c4755630dad6f2398c082.zip FreeBSD-src-b1bb470bf132f8f6639c4755630dad6f2398c082.tar.gz |
Add auth.conf. JKH Added the code to understand this to libutil, and
I will be following up with commits to use it in KerberosIV userland.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 4 | ||||
-rw-r--r-- | etc/auth.conf | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index 2b1302e..9f38a4b 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,11 +1,11 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.177 1998/09/25 08:21:15 dima Exp $ +# $Id: Makefile,v 1.178 1998/10/06 19:24:14 phk Exp $ SUBDIR= sendmail BIN1= aliases amd.map crontab csh.cshrc csh.login csh.logout dm.conf \ fbtab ftpusers gettytab group hosts host.conf hosts.equiv hosts.lpd \ - inetd.conf login.conf login.access motd modems networks \ + inetd.conf auth.conf login.conf login.access motd modems networks \ newsyslog.conf phones pccard.conf.sample printcap profile protocols \ rc rc.atm rc.conf rc.devfs rc.firewall rc.local rc.network rc.pccard \ rc.serial rc.shutdown etc.${MACHINE_ARCH}/rc.${MACHINE_ARCH} \ diff --git a/etc/auth.conf b/etc/auth.conf new file mode 100644 index 0000000..fc163a3 --- /dev/null +++ b/etc/auth.conf @@ -0,0 +1,10 @@ +# +# $Id$ +# +# This file contains information on what types of authentication to use. +# It is just the beginnings of a greater scheme. + +# auth_default = des +# auth_list = passwd kerberos + +auth_list = passwd |