wok annotate openssh-pam/receipt @ rev 19317
Make pcmanfm the opener of 'ftp://' and 'sftp://'.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Jul 12 23:46:10 2016 +0300 (2016-07-12) |
parents | f9d32919a26f |
children | 4ebd023252ac |
rev | line source |
---|---|
pascal@2188 | 1 # SliTaz package receipt. |
pascal@2188 | 2 |
pascal@2188 | 3 PACKAGE="openssh-pam" |
pascal@18808 | 4 VERSION="7.1p2" |
pascal@2188 | 5 CATEGORY="security" |
pascal@2188 | 6 SHORT_DESC="Openbsd Secure Shell using PAM." |
pascal@2188 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14657 | 8 LICENSE="BSD" |
pascal@2188 | 9 SOURCE="openssh" |
pascal@2188 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@2188 | 11 WEB_SITE="http://www.openssh.org/" |
devl547@18175 | 12 WGET_URL="http://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/$TARBALL" |
pascal@17048 | 13 CONFIG_FILES="/etc/ssh /etc/inetd.conf" |
pascal@18050 | 14 TAGS="ssh security" |
pascal@18050 | 15 |
pascal@14772 | 16 PROVIDE="openssh:pam ssh:pam" |
pascal@3628 | 17 DEPENDS="sftp-server libcrypto zlib pam" |
pascal@2188 | 18 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev pam pam-dev" |
pascal@18050 | 19 TAZPANEL_DAEMON="man::sshd|edit::/etc/ssh/sshd_config|options::OPENSSH_OPTIONS|web::$WEB_SITE" |
pascal@2188 | 20 |
pascal@2188 | 21 # Rules to configure and make the package. |
pascal@2188 | 22 compile_rules() |
pascal@2188 | 23 { |
pascal@18050 | 24 unset LD # for cross compiling with --disable-strip |
pascal@18050 | 25 ./configure \ |
pascal@18050 | 26 --prefix=/usr \ |
pascal@18050 | 27 --sysconfdir=/etc/ssh \ |
pascal@18050 | 28 --libexecdir=/usr/sbin \ |
pascal@18050 | 29 --with-privsep-user=nobody \ |
pascal@16754 | 30 --with-xauth=/usr/bin/xauth \ |
pascal@18050 | 31 --with-privsep-path=/var/run/sshd \ |
pascal@18050 | 32 --without-ssh1 \ |
pascal@18050 | 33 --with-pam \ |
pascal@18050 | 34 --disable-strip \ |
pascal@2188 | 35 $CONFIGURE_ARGS && |
pascal@18050 | 36 make STRIP_OPT="" && |
slaxemulator@11063 | 37 make DESTDIR=$DESTDIR install |
pascal@2188 | 38 } |
pascal@2188 | 39 |
pascal@2188 | 40 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2188 | 41 genpkg_rules() |
pascal@2188 | 42 { |
al@18689 | 43 mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh |
pascal@14772 | 44 cp -a $install/usr/sbin $install/usr/bin $fs/usr |
pascal@3628 | 45 rm -f $fs/usr/sbin/sftp-server |
pascal@14772 | 46 cp -a $install/etc $fs |
slaxemulator@9701 | 47 cp ../$SOURCE/stuff/openssh $fs/etc/init.d |
slaxemulator@9003 | 48 sed -i 's/.*UsePAM.*/UsePAM yes/' $fs/etc/ssh/sshd_config |
pascal@18050 | 49 sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \ |
pascal@18050 | 50 $fs/etc/ssh/sshd_config |
pascal@18807 | 51 |
pascal@18807 | 52 # client bug CVE-2016-0777 and CVE-2016-0778 |
pascal@18808 | 53 echo -e '\nHost *\n UseRoaming no' >> $fs/etc/ssh/ssh_config |
pascal@2188 | 54 } |
pascal@2188 | 55 |
pascal@7303 | 56 post_install() |
pascal@7303 | 57 { |
al@18689 | 58 grep -q ssh "$1/etc/inetd.conf" || cat >> "$1/etc/inetd.conf" <<EOT |
pascal@17048 | 59 #ssh stream tcp nowait root sshd sshd -i |
pascal@17048 | 60 EOT |
pascal@16754 | 61 while read dropbear openssh ; do |
al@18689 | 62 [ -s "$1$dropbear" ] || continue |
pascal@18730 | 63 chroot "$1/" dropbearconvert dropbear openssh $dropbear $openssh |
pascal@18730 | 64 chroot "$1/" dropbearkey -y -f $dropbear | grep ssh > "$1$openssh.pub" |
pascal@18730 | 65 chroot "$1/" dropbearkey -y -f $dropbear | grep Fingerprint |
pascal@16754 | 66 done <<EOT |
pascal@7303 | 67 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key |
pascal@7305 | 68 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key |
pascal@7303 | 69 EOT |
al@18689 | 70 |
al@18689 | 71 chroot "$1/" ssh-keygen -A |
pascal@7303 | 72 } |
pascal@17048 | 73 |
pascal@17048 | 74 post_remove() |
pascal@17048 | 75 { |
al@18689 | 76 grep -q sshd "$1/etc/inetd.conf" && sed -i '/sshd/d' "$1/etc/inetd.conf" |
pascal@17048 | 77 } |