Skip to content
Permalink
b7ef5b9c45
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 31 lines (25 sloc) 960 Bytes
#!/bin/env beesh
# BEE_VERSION openssh-9.8_p1-1
# SRCURL[0]="https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${PKGVERSION}${PKGEXTRAVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/bc04ff77796758c0b37bd0bc9314cd3f/openssh-9.8p1.tar.gz"
SYSCONFDIR=/etc/ssh
mee_patch() {
# check-config fails anyway
sed -i -e '/^install:.*check-config/ s/check-config//' ${S}/Makefile.in
}
mee_configure() {
bee_configure \
--sysconfdir=${SYSCONFDIR} \
--with-md5-passwords \
--with-privsep-path=/var/lib/sshd \
--with-pam \
--with-xauth=/usr/bin/xauth \
--enable-dsa-keys
}
mee_install() {
bee_install
mv -v ${D}${SYSCONFDIR}/ssh_config ${D}${SYSCONFDIR}/ssh_config.example
mv -v ${D}${SYSCONFDIR}/sshd_config ${D}${SYSCONFDIR}/sshd_config.example
install -v -m755 ${S}/contrib/ssh-copy-id ${D}${BINDIR}
install -v -m644 ${S}/contrib/ssh-copy-id.1 ${D}${MANDIR}/man1
}