- PR #34368 <vince@oahu.WURLDLINK.NET>

Build under 4.3-RELEASE

- PR #34515 <vince@oahu.WURLDLINK.NET>
  Build under 4.3-RELEASE

- PR #21128 <ilia@jane.cgu.chel.su>
  Extended dail.sample to handle modems with "black list".
  Modem returns an error, if a number is dialed too often
  in a short period of time.

- PR #30304 <vs@foldr.org><stolz@hyperion.informatik.rwth-aachen.de>

uucpd only uses getpwnam() for authentication. This patch adds PAM auth
via facility "uucpd" in /etc/pam.conf, e.g.

uucp    auth    sufficient      pam_skey.so
uucp    auth    sufficient      pam_ssh.so                      try_first_pass
uucp    auth    requisite       pam_cleartext_pass_ok.so
uucp    auth    required        pam_unix.so                     try_first_pass
uucp    account required        pam_unix.so
uucp    password required       pam_permit.so
uucp    session required        pam_permit.so

- <dinoex@FreeBSD.org>
  Addd missing includes files
  Remove conflicting prototypes

PR:		34368,34515,21128,30304
Submitted by:	ilia@jane.cgu.chel.su,vs@foldr.org
This commit is contained in:
Dirk Meyer 2002-02-01 23:15:29 +00:00
parent 5663ca78a0
commit 4fc2a28eb0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=54115
3 changed files with 14 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= freebsd-uucp
PORTVERSION= 1.06.1.3
PORTVERSION= 1.06.1.4
CATEGORIES= net comms
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR=dinoex
@ -29,6 +29,10 @@ post-install:
@${ECHO} "files from /etc/uucp to the new location in ${PREFIX}/etc/uucp"
@${ECHO}
@${CAT} ${PKGMESSAGE}
.if defined(WITH_PAM)
@${ECHO} "Add this lines to your pam.conf:"
@${CAT} ${FILESDIR}/uucp-pam.conf
.endif
upgrade:
@${ECHO} "Copying old configuration files from /etc/uucp to ${PREFIX}/etc/uucp"

View File

@ -1 +1 @@
MD5 (freebsd-uucp-1.06.1.3.tar.bz2) = 11b3629a84429aa49979e253279125ed
MD5 (freebsd-uucp-1.06.1.4.tar.bz2) = 321976ec7a6c6fc5ec8a5cf0edcbbb29

View File

@ -0,0 +1,8 @@
# Uucp services
uucp auth sufficient pam_skey.so
uucp auth sufficient pam_ssh.so try_first_pass
uucp auth requisite pam_cleartext_pass_ok.so
uucp auth required pam_unix.so try_first_pass
uucp account required pam_unix.so
uucp password required pam_permit.so
uucp session required pam_permit.so