File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 2626TARGETS=$@
2727
2828INSTALL_FIDO_PPA=" no"
29+ COPY_PAM_MODULE=" no"
2930export DEBIAN_FRONTEND=noninteractive
3031
3132# echo "Setting up for '$TARGETS'"
@@ -85,6 +86,7 @@ for TARGET in $TARGETS; do
8586 esac
8687 ;;
8788 * pam)
89+ COPY_PAM_MODULE=" yes"
8890 PACKAGES=" $PACKAGES libpam0g-dev"
8991 ;;
9092 sk)
@@ -139,6 +141,14 @@ if [ "yes" = "$INSTALL_FIDO_PPA" ]; then
139141 sudo apt-add-repository -y ppa:yubico/stable
140142fi
141143
144+ # need to copy the pam modules for sshd to hpnsshd on
145+ # macos with pam.
146+ if [ " yes" = " $COPY_PAM_MODULE " ]; then
147+ if [ ` uname` = " Darwin" }; then
148+ sudo cp /etc/pam.d/sshd /etc/pam.d/hpnsshd
149+ fi
150+ fi
151+
142152tries= 3
143153while [ ! -z " $PACKAGES " ] && [ " $tries " -gt " 0" ]; do
144154 case " $PACKAGER " in
Original file line number Diff line number Diff line change @@ -318,7 +318,6 @@ chachapoly_free_mt(struct chachapoly_ctx_mt * ctx_mt)
318318
319319 /* Join advancement thread if it exists */
320320 if (ctx_mt -> adv_tid != ctx_mt -> self_tid ) {
321- debug_f ("Killed advancement thread" );
322321 pthread_join (ctx_mt -> adv_tid , NULL );
323322 ctx_mt -> adv_tid = ctx_mt -> self_tid ;
324323 }
Original file line number Diff line number Diff line change 33#define SSH_VERSION "OpenSSH_9.3"
44
55#define SSH_PORTABLE "p1"
6- #define SSH_HPN "-hpn18v1RC1 "
6+ #define SSH_HPN "-hpn18.1.0-RC1 "
77#define SSH_RELEASE SSH_VERSION SSH_PORTABLE SSH_HPN
You can’t perform that action at this time.
0 commit comments