summaryrefslogtreecommitdiff
path: root/recipes/pam/libpam-base-files.bb
diff options
context:
space:
mode:
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-11-24 16:33:51 +0000
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-11-24 16:33:51 +0000
commit9a681a2affece3d2a9230c4939450d9392c33bf9 (patch)
tree15f0a38d8bdee1eb0e9bae2e6277b03c28bd3fe8 /recipes/pam/libpam-base-files.bb
parent880e00d3b7ccf66d9421a06bc28e553e07842b59 (diff)
parenta12117346588829898e6a041a4432fb0370c0c76 (diff)
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded
Diffstat (limited to 'recipes/pam/libpam-base-files.bb')
-rw-r--r--recipes/pam/libpam-base-files.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes/pam/libpam-base-files.bb b/recipes/pam/libpam-base-files.bb
new file mode 100644
index 0000000000..0fa11d8051
--- /dev/null
+++ b/recipes/pam/libpam-base-files.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Linux-PAM authentication library for Linux. Base configuration files"
+
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "GPLv2"
+DEPENDS = ""
+RDEPENDS = "libpam"
+
+PR = "r1"
+
+SRC_URI = " \
+ file://pam.d/* \
+"
+
+do_install() {
+ install -d ${D}${sysconfdir}/pam.d/
+ install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
+}