зеркало из https://github.com/Azure/sonic-openssh.git
- (bal) Patch to partial sync up contrib/solaris/ packaging software.
Patch by pete <ninjaz@webexpress.com>
This commit is contained in:
Родитель
c93e84c2ce
Коммит
6ef3964c79
|
@ -3,6 +3,8 @@
|
|||
- markus@cvs.openbsd.org 2001/05/11 14:59:56
|
||||
[clientloop.c misc.c misc.h]
|
||||
add unset_nonblock for stdout/err flushing in client_loop().
|
||||
- (bal) Patch to partial sync up contrib/solaris/ packaging software.
|
||||
Patch by pete <ninjaz@webexpress.com>
|
||||
|
||||
20010511
|
||||
- OpenBSD CVS Sync
|
||||
|
@ -5400,4 +5402,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1217 2001/05/12 00:08:37 mouring Exp $
|
||||
$Id: ChangeLog,v 1.1218 2001/05/12 16:50:50 mouring Exp $
|
||||
|
|
|
@ -145,21 +145,28 @@ mkdir -p ${BUILDDIR}/man/man1
|
|||
mkdir -p ${BUILDDIR}/man/man8
|
||||
mkdir -p ${BUILDDIR}/etc
|
||||
mkdir -p ${BUILDDIR}/bin
|
||||
mkdir -p ${BUILDDIR}/libexec
|
||||
mkdir -p ${BUILDDIR}/sbin
|
||||
|
||||
echo "Populating build directories..."
|
||||
cp -p ../../../sshd sbin
|
||||
cp -p ../../../ssh-keygen bin
|
||||
cp -p ../../../ssh-keyscan bin
|
||||
cp -p ../../../ssh bin
|
||||
cp -p ../../../ssh-add bin
|
||||
cp -p ../../../ssh-agent bin
|
||||
cp -p ../../../scp bin
|
||||
cp -p ../../../scp.1 man/man1/scp.1
|
||||
cp -p ../../../ssh-add.1 man/man1/ssh-add.1
|
||||
cp -p ../../../ssh-agent.1 man/man1/ssh-agent.1
|
||||
cp -p ../../../ssh-keygen.1 man/man1/ssh-keygen.1
|
||||
cp -p ../../../ssh.1 man/man1/ssh.1
|
||||
cp -p ../../../sshd.8 man/man8/sshd.8
|
||||
cp -p ../../../scp.1.out man/man1/scp.1
|
||||
cp -p ../../../sftp bin
|
||||
cp -p ../../../sftp.1.out man/man1/sftp.1
|
||||
cp -p ../../../sftp-server libexec/sftp-server
|
||||
cp -p ../../../sftp-server.8.out man/man8/sftp-server.8
|
||||
cp -p ../../../ssh-add.1.out man/man1/ssh-add.1
|
||||
cp -p ../../../ssh-agent.1.out man/man1/ssh-agent.1
|
||||
cp -p ../../../ssh-keygen.1.out man/man1/ssh-keygen.1
|
||||
cp -p ../../../ssh-keyscan.1.out man/man1/ssh-keyscan.1
|
||||
cp -p ../../../ssh.1.out man/man1/ssh.1
|
||||
cp -p ../../../sshd.8.out man/man8/sshd.8
|
||||
cp -p ../../../sshd_config.out etc/sshd_config.default
|
||||
cp -p ../../../ssh_config.out etc/ssh_config.default
|
||||
cp -p ../../../ssh_prng_cmds etc/ssh_prng_cmds.default
|
||||
|
@ -182,8 +189,11 @@ ${STRIP} bin/ssh
|
|||
${STRIP} bin/ssh-add
|
||||
${STRIP} bin/ssh-agent
|
||||
${STRIP} bin/ssh-keygen
|
||||
${STRIP} bin/ssh-keyscan
|
||||
${STRIP} sbin/sshd
|
||||
${STRIP} bin/scp
|
||||
${STRIP} bin/sftp
|
||||
${STRIP} libexec/sftp-server
|
||||
|
||||
echo ""
|
||||
echo "Building Package"
|
||||
|
|
|
@ -89,6 +89,26 @@ if [ ! "${UPDATE}" = "1" ]; then
|
|||
else
|
||||
echo "Using existing DSA public/private host key pair for SSH-2."
|
||||
fi
|
||||
if [ ! -f "${CONFDIR}/ssh_host_rsa_key" ]; then
|
||||
echo "Creating new RSA public/private host key pair for SSH-2."
|
||||
$INSTALLF $PKGINST ${CONFDIR}/ssh_host_rsa_key
|
||||
$INSTALLF $PKGINST ${CONFDIR}/ssh_host_rsa_key.pub
|
||||
### If there is *anything* there then leave it, otherwise look
|
||||
### in some reasonable alternate locations before giving up.
|
||||
### It's worth spending some extra time looking for the old one
|
||||
### to avoid a bunch of "host identification has changed" warnings.
|
||||
### Note that some old keys from the commercial SSH2 might not
|
||||
### be compatible, but we don't test for that.
|
||||
if [ -f "${PKG_INSTALL_ROOT}/etc/ssh_host_rsa_key" ]; then
|
||||
mv ${PKG_INSTALL_ROOT}/etc/ssh_host_rsa_key ${CONFDIR}
|
||||
elif [ -f "${PKG_INSTALL_ROOT}/usr/local/etc/ssh_host_rsa_key" ]; then
|
||||
mv ${PKG_INSTALL_ROOT}/usr/local/etc/ssh_host_rsa_key ${CONFDIR}
|
||||
else
|
||||
${DESTBIN}/ssh-keygen -t rsa -f ${CONFDIR}/ssh_host_rsa_key -N ''
|
||||
fi
|
||||
else
|
||||
echo "Using existing RSA public/private host key pair for SSH-2."
|
||||
fi
|
||||
else
|
||||
echo "Performing an \"update\" installation of OpenSSH."
|
||||
### Okay, this part *is* an update install...so we need to ensure
|
||||
|
@ -178,6 +198,26 @@ else
|
|||
else
|
||||
echo "Using existing DSA public/private host key pair for SSH-2."
|
||||
fi
|
||||
if [ ! -f "${CONFDIR}/ssh_host_rsa_key" ]; then
|
||||
echo "Creating new RSA public/private host key pair for SSH-2."
|
||||
$INSTALLF $PKGINST ${CONFDIR}/ssh_host_rsa_key
|
||||
$INSTALLF $PKGINST ${CONFDIR}/ssh_host_rsa_key.pub
|
||||
### If there is *anything* there then leave it, otherwise look
|
||||
### in some reasonable alternate locations before giving up.
|
||||
### It's worth spending some extra time looking for the old one
|
||||
### to avoid a bunch of "host identification has changed" warnings.
|
||||
### Note that some old keys from the commercial SSH2 might not
|
||||
### be compatible, but we don't test for that.
|
||||
if [ -f "${PKG_INSTALL_ROOT}/etc/ssh_host_rsa_key" ]; then
|
||||
mv ${PKG_INSTALL_ROOT}/etc/ssh_host_rsa_key ${CONFDIR}
|
||||
elif [ -f "${PKG_INSTALL_ROOT}/usr/local/etc/ssh_host_rsa_key" ]; then
|
||||
mv ${PKG_INSTALL_ROOT}/usr/local/etc/ssh_host_rsa_key ${CONFDIR}
|
||||
else
|
||||
${DESTBIN}/ssh-keygen -d -f ${CONFDIR}/ssh_host_rsa_key -N ''
|
||||
fi
|
||||
else
|
||||
echo "Using existing RSA public/private host key pair for SSH-2."
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ ! -d %%PIDDIR%% ]; then
|
||||
|
|
|
@ -5,11 +5,15 @@ i preremove
|
|||
d none man 0755 root sys
|
||||
d none man/man1 0755 root sys
|
||||
f none man/man1/scp.1 0644 root sys
|
||||
f none man/man1/sftp.1 0644 root sys
|
||||
f none man/man1/ssh-add.1 0644 root sys
|
||||
f none man/man1/ssh-agent.1 0644 root sys
|
||||
f none man/man1/ssh-keygen.1 0644 root sys
|
||||
f none man/man1/ssh-keyscan.1 0644 root sys
|
||||
f none man/man1/ssh.1 0644 root sys
|
||||
s none man/man1/slogin.1=ssh.1
|
||||
d none man/man8 0755 root sys
|
||||
f none man/man8/sftp-server.8 0644 root sys
|
||||
f none man/man8/sshd.8 0644 root sys
|
||||
d none etc 0755 root sys
|
||||
f none etc/sshd_config.default 0644 root sys
|
||||
|
@ -20,8 +24,13 @@ f none etc/sshd-initscript 0755 root sys
|
|||
d none bin 0755 root sys
|
||||
f none bin/ssh-keygen 0755 root sys
|
||||
f none bin/ssh 0755 root sys
|
||||
s none bin/slogin=ssh 0755 root sys
|
||||
f none bin/ssh-add 0755 root sys
|
||||
f none bin/ssh-agent 0755 root sys
|
||||
f none bin/ssh-keyscan 0755 root sys
|
||||
f none bin/scp 0755 root sys
|
||||
f none bin/sftp 0755 root sys
|
||||
d none libexec 0755 root sys
|
||||
f none libexec/sftp-server 0755 root sys
|
||||
d none sbin 0755 root sys
|
||||
f none sbin/sshd 0755 root sys
|
||||
|
|
Загрузка…
Ссылка в новой задаче