File: postinst

package info (click to toggle)
dpkg-iasearch 0.9
  • links: PTS
  • area: main
  • in suites: woody
  • size: 88 kB
  • ctags: 9
  • sloc: sh: 160; makefile: 45; perl: 28
file content (14 lines) | stat: -rwxr-xr-x 307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# Create a database  of the packages file

# run dpkg-make-index on installation

LOG=/var/log/dpkg-iasearch.log

echo Building the index of packages in the background.
date > $LOG
echo Building the index of packages in the background. >>$LOG
/usr/bin/dpkg-make-index  2>&1 >>$LOG &


#DEBHELPER#