Add separate directory for postinstall intercepts
authorLaurentiu Palcu <laurentiu.palcu@intel.com>
Tue, 12 Feb 2013 16:12:36 +0000 (18:12 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 13 Feb 2013 16:52:28 +0000 (16:52 +0000)
commit4d559dc6dc58babd716d937e20ab4e174480a163
tree9a7432157b3a27603813adc120493e360a41bf99
parentfb4ceb106dfb39d7bd3d050c1e17cb6cebc74936
Add separate directory for postinstall intercepts

The scripts/postinst-intercepts will contain all postinstall hooks that
we need to run after all packages have been installed.

If one wants to install such a postinst hook, all it needs to do is put
the hook in this directory and, from the package postinstall scriptlet,
call:
postinst_intercept <hook_name> <package_name> <var1=...> ...

This will, practically, add the package_name in the list of packages
that need the hook to run and, also, set any variables that would be
needed in the hook. For example, variables like ${libdir}, ${bindir},
etc. that might depend on distribution can be passed on to the script in
this way.

(From OE-Core rev: 0ef538d75c2f3921a2fcbe6ca1deed5525b276cc)

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/postinst-intercepts/postinst_intercept [new file with mode: 0755]
scripts/postinst-intercepts/update_font_cache [new file with mode: 0644]
scripts/postinst-intercepts/update_icon_cache [new file with mode: 0644]
scripts/postinst-intercepts/update_pixbuf_cache [new file with mode: 0644]