blob: 7d056dbca943d8a1e9a0f8c159c627bf961b5af5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Description: Configuration de base pour les services PAM.
# URL: http://piernov.org/git/nutyx-extra/tree/pambase
# Maintainer: piernov <piernov@piernov.org>
# Packager: piernov <piernov@piernov.org>
# Depends on: linux-pam
# Run on: linux-pam
name=pambase
version=2012
release=1
source=(system-auth
system-local-login
system-login
system-remote-login
system-services
other)
build() {
install -dm755 $PKG/etc/pam.d
install -m644 -t $PKG/etc/pam.d \
system-auth \
system-local-login \
system-login \
system-remote-login \
system-services \
other
}
|