diff options
author | David-John Willis <John.Willis@Distant-earth.com> | 2009-11-09 21:32:46 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-11-24 11:08:36 +0100 |
commit | 873c8d85d639b4996e4613d1a85b819d98c5f2be (patch) | |
tree | 2568cd468514ccc02f871d4d47463dbc71793e2e /recipes/sudo/sudo_1.7.2p1.bb | |
parent | 4677a67913c5ec376eb016e6aac21f9a7ad5e9c4 (diff) |
sudo: Add 1.7.2p1 and enable PAM support by default in newer sudo builds.
sudo.inc: Tweak include to support newer sudo versions.
* Apply in addition to earlier sudo recipe bumps.
* Tweak pam.d config file for sudo and add a (WIP) recipe for turning on support for the wheel group.
* Update pam.d service file to suggested upstream Linux-PAM layout.
Diffstat (limited to 'recipes/sudo/sudo_1.7.2p1.bb')
-rw-r--r-- | recipes/sudo/sudo_1.7.2p1.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/sudo/sudo_1.7.2p1.bb b/recipes/sudo/sudo_1.7.2p1.bb new file mode 100644 index 0000000000..bfa8afe650 --- /dev/null +++ b/recipes/sudo/sudo_1.7.2p1.bb @@ -0,0 +1,19 @@ +PR = "r3" + +DEPENDS = "libpam" +RDEPENDS = "libpam libpam-meta" + +SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \ + file://sudo.pamd \ +" + +EXTRA_OECONF += " --with-pam " + +require sudo.inc + +# Do in the recipe not the common inc as not all SUDO recipes want PAM support. + +do_install_append() { + install -d ${D}${sysconfdir}/pam.d/ + install -m 0644 ${WORKDIR}/sudo.pamd ${D}${sysconfdir}/pam.d/sudo +} |