File: preinst

package info (click to toggle)
unattended-upgrades 2.8
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 1,188 kB
  • sloc: python: 3,896; sh: 443; makefile: 78
file content (21 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

set -e

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

CONFIG="/etc/apt/apt.conf.d/50unattended-upgrades"

# if the transition to ucf was not handled properly, do it now
case "$1" in
    install|upgrade)
        if [ -n "$2" ] &&  dpkg --compare-versions "$2" lt "1.8~" \
               && dpkg-query -W  -f='${Conffiles}\n' unattended-upgrades | grep -q "$CONFIG .* obsolete"; then
	    cp "$CONFIG" "$CONFIG.ucftmp"
	    dpkg-maintscript-helper rm_conffile "$CONFIG" -- "$@"
        fi
	;;
esac