blob: ddcfe4c7496572c0b30f92d96e5a73461ddb8028 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Linux-PAM authentication library for Linux. Base configuration files"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "GPLv2"
DEPENDS = ""
RDEPENDS_${PN} = "libpam"
RRECOMMENDS_${PN} = "libpam-meta"
PR = "r6"
SRC_URI = " \
file://pam.d/* \
"
do_install() {
install -d ${D}${sysconfdir}/pam.d/
install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
}
|