From 485edf0b8dc98f99479a22e2faa74534dcfb1c01 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 14 Apr 2010 06:46:41 +0000 Subject: [PATCH] Add sshd key generator to the install rules for openssh --- net-misc/openssh/openssh-5.4p1.bep | 6 ++++-- .../openssh/{boot/post_install/ssh.sh => sshd_keymaker.sh} | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename net-misc/openssh/{boot/post_install/ssh.sh => sshd_keymaker.sh} (100%) diff --git a/net-misc/openssh/openssh-5.4p1.bep b/net-misc/openssh/openssh-5.4p1.bep index ce8f431dd..c88fe4117 100644 --- a/net-misc/openssh/openssh-5.4p1.bep +++ b/net-misc/openssh/openssh-5.4p1.bep @@ -37,8 +37,10 @@ BUILD { INSTALL { cd openssh-5.4p1 if [ -n ${DESTDIR} ];then - make install DESTDIR="${DESTDIR}" + make install DESTDIR="${DESTDIR}" else - make install + make install fi + mkdir -p ${DESTDIR}/boot/common/boot/post_install + cp -f $(haikuporter -t)/net-misc/openssh/sshd_keymaker.sh ${DESTDIR}/boot/common/boot/post_install } diff --git a/net-misc/openssh/boot/post_install/ssh.sh b/net-misc/openssh/sshd_keymaker.sh similarity index 100% rename from net-misc/openssh/boot/post_install/ssh.sh rename to net-misc/openssh/sshd_keymaker.sh