From: Damien Miller Date: Wed, 15 Mar 2000 01:25:06 +0000 (+1100) Subject: Moved package files to contrib/ X-Git-Tag: V_1_2_3_PRE3~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=256fdcbec5ee70e69a89e47a360b6091a904f1a6;p=thirdparty%2Fopenssh-portable.git Moved package files to contrib/ Added FreeBSD PAM config --- diff --git a/contrib/README b/contrib/README index fda244f6d..f04ad1530 100644 --- a/contrib/README +++ b/contrib/README @@ -26,6 +26,24 @@ gnome-ssh-askpass: A GNOME passphrase requester of my own creation. Compilation instructions are in the top of the file. +sshd.pam.generic: + +A generic PAM config file which may be useful on your system. YMMV + +sshd.pam.freebsd + +A PAM config file which works with FreeBSD's PAM port. Contributed by +Dominik Brettnacher + +redhat: + +RPM spec file an scripts for building Redhat packages + +suse: + +RPM spec file an scripts for building SuSE packages + + Externally maintained --------------------- diff --git a/packages/redhat/openssh.spec b/contrib/redhat/openssh.spec similarity index 100% rename from packages/redhat/openssh.spec rename to contrib/redhat/openssh.spec diff --git a/packages/redhat/sshd.init b/contrib/redhat/sshd.init similarity index 100% rename from packages/redhat/sshd.init rename to contrib/redhat/sshd.init diff --git a/packages/redhat/sshd.pam b/contrib/redhat/sshd.pam similarity index 100% rename from packages/redhat/sshd.pam rename to contrib/redhat/sshd.pam diff --git a/contrib/sshd.pam.freebsd b/contrib/sshd.pam.freebsd new file mode 100644 index 000000000..c0bc36410 --- /dev/null +++ b/contrib/sshd.pam.freebsd @@ -0,0 +1,5 @@ +sshd auth required pam_unix.so try_first_pass +sshd account required pam_unix.so +sshd password required pam_permit.so +sshd session required pam_permit.so + diff --git a/contrib/sshd.pam.generic b/contrib/sshd.pam.generic new file mode 100644 index 000000000..cf5af3024 --- /dev/null +++ b/contrib/sshd.pam.generic @@ -0,0 +1,8 @@ +#%PAM-1.0 +auth required /lib/security/pam_unix.so shadow nodelay +auth required /lib/security/pam_nologin.so +account required /lib/security/pam_unix.so +password required /lib/security/pam_cracklib.so +password required /lib/security/pam_unix.so shadow nullok use_authtok +session required /lib/security/pam_unix.so +session required /lib/security/pam_limits.so diff --git a/packages/suse/openssh.spec b/contrib/suse/openssh.spec similarity index 100% rename from packages/suse/openssh.spec rename to contrib/suse/openssh.spec diff --git a/packages/suse/rc.config.sshd b/contrib/suse/rc.config.sshd similarity index 100% rename from packages/suse/rc.config.sshd rename to contrib/suse/rc.config.sshd diff --git a/packages/suse/rc.sshd b/contrib/suse/rc.sshd similarity index 100% rename from packages/suse/rc.sshd rename to contrib/suse/rc.sshd