diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-03-28 14:54:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-02 18:14:51 +0100 |
commit | e9e4a90c7e66abe2ab2c335d60ef91e869f48693 (patch) | |
tree | 47fa7f20f4645c35a186153b26c59801021045f5 /meta | |
parent | 34432115e58026ec923324a7825cbbf3840dc444 (diff) | |
download | openembedded-core-e9e4a90c7e66abe2ab2c335d60ef91e869f48693.tar.gz openembedded-core-e9e4a90c7e66abe2ab2c335d60ef91e869f48693.tar.bz2 openembedded-core-e9e4a90c7e66abe2ab2c335d60ef91e869f48693.zip |
openssh: don't add update-rc.d to RDEPENDS
* sysvinit/systemd assumes that update-rc.d can be inhibited
* with systemd enabled, sysvinit scripts are missing in packages
and update-rc.d needs to be put in BAD_RECOMMENDATIONS to prevent
update-rc.d trying to install them in postinst
* update-rd.c shouldn't be in DEPENDS
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh_6.1p1.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh_6.1p1.bb b/meta/recipes-connectivity/openssh/openssh_6.1p1.bb index 32c3b2c8a4..0cffd2316d 100644 --- a/meta/recipes-connectivity/openssh/openssh_6.1p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_6.1p1.bb @@ -96,8 +96,7 @@ FILES_${PN}-misc = "${bindir}/ssh* ${libexecdir}/ssh*" FILES_${PN}-keygen = "${bindir}/ssh-keygen" RDEPENDS_${PN} += "${PN}-scp ${PN}-ssh ${PN}-sshd ${PN}-keygen" -DEPENDS_${PN}-sshd += "update-rc.d" -RDEPENDS_${PN}-sshd += "update-rc.d ${PN}-keygen" +RDEPENDS_${PN}-sshd += "${PN}-keygen" CONFFILES_${PN}-sshd = "${sysconfdir}/ssh/sshd_config" CONFFILES_${PN}-ssh = "${sysconfdir}/ssh/ssh_config" |