diff options
author | Richard Purdie <richard@openedhand.com> | 2008-09-03 23:20:58 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-09-03 23:20:58 +0000 |
commit | a6f3e46936b913032ead27dd67e6fe03f03cd36c (patch) | |
tree | 17382ab6ac86691ec7b23cd295420a19b852e6e9 /meta/packages/yum/yum-native/extract-postinst.awk | |
parent | f9cefb630eab68f2998702baded4a2acab697caf (diff) | |
download | poky-a6f3e46936b913032ead27dd67e6fe03f03cd36c.tar.gz |
yum-native: Add extract-postinst.awk script for use during rootfs generation
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5133 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/yum/yum-native/extract-postinst.awk')
-rw-r--r-- | meta/packages/yum/yum-native/extract-postinst.awk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/packages/yum/yum-native/extract-postinst.awk b/meta/packages/yum/yum-native/extract-postinst.awk new file mode 100644 index 0000000000..8f2836b32c --- /dev/null +++ b/meta/packages/yum/yum-native/extract-postinst.awk | |||
@@ -0,0 +1,11 @@ | |||
1 | /Name:.*/ { | ||
2 | package = substr($0, 7) | ||
3 | next | ||
4 | } | ||
5 | /postinstall.*scriptlet .*/ { | ||
6 | next | ||
7 | } | ||
8 | { | ||
9 | print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh" | ||
10 | } | ||
11 | |||