Fix: add install var in PKGBUILD
All checks were successful
Build package / build-package (push) Successful in 7s

This commit is contained in:
2025-07-28 10:37:27 +08:00
parent 3105cae8e9
commit 14fa225f4c
2 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
# Maintainer: Yi-Ting Shih <ytshih@konchin.com>
pkgname=hl-ldap-env
pkgver=0.0.4
pkgver=0.0.5
pkgrel=1
pkgdesc="LDAP and NFS environment for konchin.com homelab"
arch=(any)
@@ -13,6 +13,7 @@ depends=(
'sudo'
'pam'
)
install="$pkgname.install"
source=(
'install.sh'
'ldap.conf'

View File

@@ -1,7 +1,9 @@
post_install() {
echo 'Executing install.sh...'
bash "$pkgdir/usr/lib/hl-ldap-env/install.sh"
}
post_upgrade() {
echo 'Executing install.sh...'
bash "$pkgdir/usr/lib/hl-ldap-env/install.sh"
}