From owner-svn-src-head@freebsd.org Sat Jul 28 20:21:24 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2D50105D047; Sat, 28 Jul 2018 20:21:24 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 59D7C7E8D6; Sat, 28 Jul 2018 20:21:24 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3CA163BEC; Sat, 28 Jul 2018 20:21:24 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6SKLODE031950; Sat, 28 Jul 2018 20:21:24 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6SKLNru031947; Sat, 28 Jul 2018 20:21:23 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201807282021.w6SKLNru031947@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Sat, 28 Jul 2018 20:21:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336840 - in head: etc lib/libc/gen X-SVN-Group: head X-SVN-Commit-Author: brd X-SVN-Commit-Paths: in head: etc lib/libc/gen X-SVN-Commit-Revision: 336840 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2018 20:21:24 -0000 Author: brd Date: Sat Jul 28 20:21:23 2018 New Revision: 336840 URL: https://svnweb.freebsd.org/changeset/base/336840 Log: Move etc/shells to lib/libc/gen with getusershell(3). Approved by: will (mentor) Differential Revision: https://reviews.freebsd.org/D16467 Added: head/lib/libc/gen/shells - copied unchanged from r336839, head/etc/shells Deleted: head/etc/shells Modified: head/etc/Makefile head/lib/libc/gen/Makefile.inc Modified: head/etc/Makefile ============================================================================== --- head/etc/Makefile Sat Jul 28 20:21:04 2018 (r336839) +++ head/etc/Makefile Sat Jul 28 20:21:23 2018 (r336840) @@ -47,7 +47,6 @@ BIN1= crontab \ remote \ rpc \ services \ - shells \ sysctl.conf \ syslog.conf \ termcap.small Modified: head/lib/libc/gen/Makefile.inc ============================================================================== --- head/lib/libc/gen/Makefile.inc Sat Jul 28 20:21:04 2018 (r336839) +++ head/lib/libc/gen/Makefile.inc Sat Jul 28 20:21:23 2018 (r336840) @@ -4,6 +4,8 @@ # machine-independent gen sources .PATH: ${LIBC_SRCTOP}/${LIBC_ARCH}/gen ${LIBC_SRCTOP}/gen +CONFS= shells + SRCS+= __getosreldate.c \ __pthread_mutex_init_calloc_cb_stub.c \ __xuname.c \ Copied: head/lib/libc/gen/shells (from r336839, head/etc/shells) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lib/libc/gen/shells Sat Jul 28 20:21:23 2018 (r336840, copy of r336839, head/etc/shells) @@ -0,0 +1,9 @@ +# $FreeBSD$ +# +# List of acceptable shells for chpass(1). +# Ftpd will not allow users to connect who are not using +# one of these shells. + +/bin/sh +/bin/csh +/bin/tcsh