#!/bin/sh # postinst script for lliurex-cdlocker # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see https://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) CANONICAL_FILE="/etc/apt/sources.list.d/canonical.list" RC=0 dpkg -l adobe-flashplugin 1>/dev/null 2>/dev/null || RC=1 if [ "$RC" = "0" ]; then apt-mark manual adobe-flashplugin || true RC_SL=0 rgrep "archive.canonical.com" /etc/apt/sources.list* | grep -e .list: || RC_SL=1 if [ "$RC_SL" = "1" ]; then echo "# AUTOMATICALLY ADDED BY LLIUREX-FLASH-TRANSITIONAL" > $CANONICAL_FILE echo "deb http://archive.canonical.com/ubuntu xenial partner" >> $CANONICAL_FILE fi fi RC=0 dpkg -l cloudbook 1>/dev/null 2>/dev/null || RC=1 if [ "$RC" = "0" ]; then apt-mark manual cloudbook || true fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0