blob: 7ceb46d104955cf176e0127f1bee81b7bad65861 (
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 = "r5"
SRC_URI = " \
file://pam.d/* \
"
do_install() {
install -d ${D}${sysconfdir}/pam.d/
install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
}
|