summaryrefslogtreecommitdiffstats
path: root/scripts/postinst-intercepts/postinst_intercept
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2013-02-12 18:12:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-13 16:52:28 +0000
commit7306dbea6d5ea95624f89bb247b742392be20046 (patch)
tree8106894b93f7c3ff332957806092db88acfab780 /scripts/postinst-intercepts/postinst_intercept
parentc77e1f4e14edf7a07000f0e7360d42039af5e524 (diff)
downloadpoky-7306dbea6d5ea95624f89bb247b742392be20046.tar.gz
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>
Diffstat (limited to 'scripts/postinst-intercepts/postinst_intercept')
-rwxr-xr-xscripts/postinst-intercepts/postinst_intercept37
1 files changed, 37 insertions, 0 deletions
diff --git a/scripts/postinst-intercepts/postinst_intercept b/scripts/postinst-intercepts/postinst_intercept
new file mode 100755
index 0000000000..ed32f27802
--- /dev/null
+++ b/scripts/postinst-intercepts/postinst_intercept
@@ -0,0 +1,37 @@
1#!/bin/sh
2#
3# This script is called from inside postinstall scriptlets at do_rootfs time. It
4# actually adds, at the end, the list of packages for which the intercept script
5# is valid. Also, if one wants to pass any variables to the intercept script from
6# the postinstall itself, they will be added immediately after the shebang line.
7#
8# Usage: postinst_intercept <intercept_script_name> <package_name> <var1=...> ... <varN=...>
9# * intercept_script_name - the name of the intercept script we want to change;
10# * package_name - add the package_name to list of packages the intercept script
11# is used for;
12# * var1=... - var1 will have the value we provide in the intercept script. This
13# is useful when we want to pass on variables like ${libdir} to
14# the intercept script;
15#
16[ $# -lt 2 ] && exit 1
17
18intercept_script=$INTERCEPT_DIR/$1 && shift
19package_name=$1 && shift
20
21[ -f "$intercept_script" ] || exit 1
22
23chmod +x "$intercept_script"
24
25pkgs_line="$(cat $intercept_script|grep "##PKGS:")"
26if [ -n "$pkgs_line" ]; then
27 # line exists, add this package to the list only if it's not already there
28 if [ -z "$(echo "$pkgs_line" | grep " $package_name ")" ]; then
29 sed -i -e "s/##PKGS:.*/\0${package_name} /" $intercept_script
30 fi
31else
32 for var in $@; do
33 sed -i -e "\%^#\!/bin/.*sh%a $var" $intercept_script
34 done
35 echo "##PKGS: ${package_name} " >> $intercept_script
36fi
37