summaryrefslogtreecommitdiff
path: root/community/nss-pam-ldapd
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/nss-pam-ldapd
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/nss-pam-ldapd')
-rw-r--r--community/nss-pam-ldapd/PKGBUILD46
-rw-r--r--community/nss-pam-ldapd/nslcd.service12
-rw-r--r--community/nss-pam-ldapd/nslcd.tmpfiles1
-rw-r--r--community/nss-pam-ldapd/nss-pam-ldapd.install12
4 files changed, 0 insertions, 71 deletions
diff --git a/community/nss-pam-ldapd/PKGBUILD b/community/nss-pam-ldapd/PKGBUILD
deleted file mode 100644
index 773c57b2f..000000000
--- a/community/nss-pam-ldapd/PKGBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
-
-pkgname=nss-pam-ldapd
-pkgver=0.8.13
-pkgrel=4
-pkgdesc='LDAP module for NSS and PAM'
-arch=('i686' 'x86_64')
-url="http://arthurdejong.org/$pkgname/"
-license=('LGPL2.1')
-depends=('krb5')
-replaces=('pam_ldap' 'nss_ldap')
-conflicts=('nss-pam-ldapd-git')
-provides=('nss-pam-ldapd')
-install=nss-pam-ldapd.install
-backup=('etc/nslcd.conf')
-source=("http://arthurdejong.org/$pkgname/$pkgname-$pkgver.tar.gz"
- "nslcd.service"
- "nslcd.tmpfiles")
-sha1sums=('0567cfea104defabeacd88a3a3200b311b8071ec'
- 'b564fa5738963a67a9240bf4ce63b2fa494cafb7'
- '6e225e0d849a48e01b58adad493f017a34bdf70c')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure \
- --prefix=/usr \
- --sbindir=/usr/bin \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --with-pam-seclib-dir=/usr/lib/security;
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- install -Dm644 "$srcdir/nslcd.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/nslcd.conf"
- install -Dm644 "$srcdir/nslcd.service" "$pkgdir/usr/lib/systemd/system/nslcd.service"
- install -Dm644 "$srcdir/$pkgname-$pkgver/nslcd.conf" "$pkgdir/etc/nslcd.conf"
-
- make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/nss-pam-ldapd/nslcd.service b/community/nss-pam-ldapd/nslcd.service
deleted file mode 100644
index 73a9b5272..000000000
--- a/community/nss-pam-ldapd/nslcd.service
+++ /dev/null
@@ -1,12 +0,0 @@
-[Unit]
-Description=Naming services LDAP client daemon.
-After=syslog.target network.target
-
-[Service]
-Type=forking
-PIDFile=/var/run/nslcd/nslcd.pid
-ExecStart=/usr/bin/nslcd
-
-[Install]
-WantedBy=multi-user.target
-
diff --git a/community/nss-pam-ldapd/nslcd.tmpfiles b/community/nss-pam-ldapd/nslcd.tmpfiles
deleted file mode 100644
index ac4ee0ad8..000000000
--- a/community/nss-pam-ldapd/nslcd.tmpfiles
+++ /dev/null
@@ -1 +0,0 @@
-d /run/nslcd 0755 nslcd nslcd -
diff --git a/community/nss-pam-ldapd/nss-pam-ldapd.install b/community/nss-pam-ldapd/nss-pam-ldapd.install
deleted file mode 100644
index a8b93f218..000000000
--- a/community/nss-pam-ldapd/nss-pam-ldapd.install
+++ /dev/null
@@ -1,12 +0,0 @@
-post_install() {
- getent passwd nslcd >> /dev/null || useradd -r -M -d /var/run/nslcd -s /bin/false nslcd
-}
-
-post_upgrade() {
- getent passwd nslcd >> /dev/null || useradd -r -M -s /bin/false nslcd
-}
-
-pre_remove() {
- userdel nslcd >/dev/null 2>&1 || true
-}
-