mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
testing/ssh-ldap-pubkey: new aport
https://github.com/jirutka/ssh-ldap-pubkey Utility to manage SSH public keys stored in LDAP
This commit is contained in:
parent
1dc3004bc5
commit
d08bdad70d
46
testing/ssh-ldap-pubkey/APKBUILD
Normal file
46
testing/ssh-ldap-pubkey/APKBUILD
Normal file
@ -0,0 +1,46 @@
|
||||
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
||||
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
||||
pkgname=ssh-ldap-pubkey
|
||||
pkgver=1.0.0
|
||||
pkgrel=0
|
||||
pkgdesc="Utility to manage SSH public keys stored in LDAP"
|
||||
url="https://github.com/jirutka/ssh-ldap-pubkey"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="python3 py3-pyldap py3-docopt"
|
||||
makedepends="python3-dev"
|
||||
install="$pkgname.post-install"
|
||||
subpackages="$pkgname-doc"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/jirutka/$pkgname/archive/v$pkgver.tar.gz
|
||||
ldap.conf.patch"
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
prepare() {
|
||||
default_prepare || return 1
|
||||
|
||||
sed -i 's|/etc/ldap.conf|/etc/ssh-ldap-pubkey.conf|g' bin/ssh-ldap-pubkey
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
python3 setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
|
||||
python3 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||
|
||||
install -m 644 -D etc/ldap.conf \
|
||||
"$pkgdir"/etc/ssh-ldap-pubkey.conf || return 1
|
||||
|
||||
mkdir -p "$pkgdir"/usr/share/doc/$pkgname
|
||||
cp README.md etc/openssh-lpk.schema "$pkgdir"/usr/share/doc/$pkgname/
|
||||
}
|
||||
|
||||
md5sums="0f6419c27cd5c9a3d92905f525dc6c47 ssh-ldap-pubkey-1.0.0.tar.gz
|
||||
c257d9efbd2254ca748b99a0436336da ldap.conf.patch"
|
||||
sha256sums="e9943325c60e43a873855735b014ae2647f148d2bbc97d40833d3ed52578dcbc ssh-ldap-pubkey-1.0.0.tar.gz
|
||||
27dfb815c32eeaf2a63b54a6cf1744a613e66b9deab230ffbf737d690c5e130e ldap.conf.patch"
|
||||
sha512sums="62c549c0412b306cfdfc1c8e463e235c5c8f40026855ded40c24cbf0f74d1448f40c298dac3ab3459e1b417472488554d27b80c46f0c27be5ebc6965c9a3349b ssh-ldap-pubkey-1.0.0.tar.gz
|
||||
5b96dd8b1150eb62db7d33d1eee5ed9b28ebaf487c6a8cab6ba1d66d14496c2fdb1c73c1c0959ccd99ea53359b8d82861b7416dc0351bfa22ccfe59b5f530564 ldap.conf.patch"
|
17
testing/ssh-ldap-pubkey/ldap.conf.patch
Normal file
17
testing/ssh-ldap-pubkey/ldap.conf.patch
Normal file
@ -0,0 +1,17 @@
|
||||
--- a/etc/ldap.conf
|
||||
+++ b/etc/ldap.conf
|
||||
@@ -1,11 +1,9 @@
|
||||
-# /etc/ldap.conf
|
||||
-#
|
||||
-# This is the configuration file for OpenSSH LDAP Public Keys (ssh-ldap-pubkey).
|
||||
+# Configuration file for OpenSSH LDAP Public Keys (ssh-ldap-pubkey).
|
||||
#
|
||||
# This file actually uses a subset of directives from configuration file of the
|
||||
# LDAP nameservice switch library and the LDAP PAM module, so the same file can
|
||||
-# be used for all these services.
|
||||
-#
|
||||
+# be used for all these services. However, neither of them is needed for using
|
||||
+# ssh-ldap-pubkey!
|
||||
|
||||
# Specifies the URI of the LDAP server to connect to. The URI scheme may be
|
||||
# ldap, or ldaps, specifying LDAP over TCP or SSL respectively. A port number
|
13
testing/ssh-ldap-pubkey/ssh-ldap-pubkey.post-install
Normal file
13
testing/ssh-ldap-pubkey/ssh-ldap-pubkey.post-install
Normal file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
cat >&2 <<EOF
|
||||
*
|
||||
* Adjust LDAP settings in /etc/ssh-ldap-pubkey.conf.
|
||||
*
|
||||
* If you want OpenSSH server to look up users' public keys in LDAP,
|
||||
* add the following lines to /etc/ssh/sshd_config and reload sshd:
|
||||
*
|
||||
* AuthorizedKeysCommand /usr/bin/ssh-ldap-pubkey-wrapper
|
||||
* AuthorizedKeysCommandUser nobody
|
||||
*
|
||||
EOF
|
Loading…
Reference in New Issue
Block a user