summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/dpkg/run-postinsts/run-postinsts.awk
blob: d92200b4f02e339305b1c155d7599fdafa6221c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Copyright 2007 Openedhand Ltd.
#
# Author: Richard Purdie <rpurdie@openedhand.com>
#
# Rather hacky proof of concept
#

BEGIN {
  rc=system("test -d /usr/dpkg/info/")
  if (rc==0)
    pkgdir="/var/lib/dpkg/info"
  else
    pkgdir="/usr/lib/opkg/info"
  package=""
}
/Package:.*/ {
  package = substr($0, 10)
}
/Status:.*unpacked.*/ {
  print "Configuring: " package > "/dev/stderr"
  ret = system(pkgdir "/" package ".postinst 1>&2")
  if (ret == 0)
    $0 = gensub("unpacked", "installed", 1)
  else
    print "Postinstall failed for " package > "/dev/stderr"
}
{
  print $0
}
OpenPOWER on IntegriCloud