File: postinst.in

package info (click to toggle)
apt-listchanges 3.10
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,088 kB
  • ctags: 218
  • sloc: python: 1,382; xml: 528; makefile: 136; sh: 64; perl: 61
file content (40 lines) | stat: -rw-r--r-- 930 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
# vim:set fileencoding=utf-8 et ts=4 sts=4 sw=4:

set -e

PREFERENCES=/etc/apt/listchanges.conf

. /usr/share/debconf/confmodule

runPython()
{
    tempdir=`mktemp --directory --suffix=.aptlc`
    trap "rm -rf $tempdir" EXIT
    temp="$tempdir/debconf-helper.py"
    cat > "$temp" << 'EOF'
#DEBCONF_HELPER_PY#
EOF
    python3 -B "$temp" "$@"
}

    
if [ "$1" = "configure" ]
then
    runPython postinst "$PREFERENCES" "$@"
    ucfr 'apt-listchanges' "$PREFERENCES"
    # Ignore whitespace-only difference (see #823514)
    diff -qwB "$PREFERENCES".new "$PREFERENCES" >/dev/null 2>&1 || \
      ucf --debconf-ok "$PREFERENCES".new "$PREFERENCES"
    rm -f "$PREFERENCES".new
fi

[ -z "$DEBCONF_RECONFIGURE" ] || exit 0

# Fix a bug introduced in 3.0
dbfile=/var/lib/apt/listchanges.db
if [ "$1" = "configure" ] && [ "$2" = "3.0" ] && [ "$dbfile.db" -nt "$dbfile" ]; then
    mv -f "$dbfile.db" "$dbfile"
fi

#DEBHELPER#