41 lines
1.4 KiB
Bash
41 lines
1.4 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=pambase
|
|
pkgver=20211210
|
|
pkgrel=01
|
|
pkgdesc="Base PAM configuration for services"
|
|
arch=('any')
|
|
url="https://www.archlinux.org"
|
|
source=('system-auth'
|
|
'system-local-login'
|
|
'system-login'
|
|
'system-remote-login'
|
|
'system-services'
|
|
'other')
|
|
backup=('etc/pam.d/system-auth'
|
|
'etc/pam.d/system-local-login'
|
|
'etc/pam.d/system-login'
|
|
'etc/pam.d/system-remote-login'
|
|
'etc/pam.d/system-services'
|
|
'etc/pam.d/other')
|
|
package() {
|
|
install -dm755 "$pkgdir/etc/pam.d"
|
|
install -m644 -t "$pkgdir/etc/pam.d" "${source[@]}"
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
sha256sums=(a)
|
|
|
|
license=('GPL')
|
|
|
|
sha256sums=(07b375c248a450e92ad29c8c150a83f595997acb20dc761e24205aceff07b069 # system-auth
|
|
005736b9bd650ff5e5d82a7e288853776d5bb8c90185d5774c07231c1e1c64a9 # system-local-login
|
|
c98d7c8d205d98fab9de15a248171f7b7f831068fa73a5128be633feb718c66d # system-login
|
|
005736b9bd650ff5e5d82a7e288853776d5bb8c90185d5774c07231c1e1c64a9 # system-remote-login
|
|
6eb1acdd3fa9f71a7f93fbd529be57ea65bcafc6e3a98a06af4d88013fc6a567 # system-services
|
|
d5ed59ec2157c19c87964a162f7ca84d53c19fb2bd68d3fbc1671ba8d906346f) # other
|