PATH:
var
/
lib
/
dpkg
/
info
#!/bin/bash set -e # Apply a sed expression using extended regular expressions in place to a # file, if it exists. The file is the first argument in order to work # neatly with apply_conf_tweaks. sed_conf() { if [ -e "$1" ]; then sed -i -re "$2" "$1" fi } # Substitute a debconf answer into a configuration file with the syntax of # /etc/default/grub. merge_debconf_into_conf() { local tmpfile; tmpfile="$1" local setting; setting="$2" local template; template="$3" db_get "$template" local value; value="$(echo "$RET" | sed -e 's,[$`"\],\\&,g')" if grep -q "^${setting}=" "$tmpfile"; then value="$(echo "$value" | sed -e 's,[\@],\\&,g')" sed -i -re "s@^(${setting}=).*@\1\"${value}\"@" "$tmpfile" else echo >> "$tmpfile" echo "${setting}=\"${value}\"" >> "$tmpfile" fi } # Apply the same configuration tweak to multiple files. apply_conf_tweaks() { local files; files="$1" local cmd; cmd="$2" local file shift 2 for file in $files; do if [ -e "$file" ]; then "$cmd" "$file" "$@" fi done } get_wubi_device() { if [ ! -x /usr/share/lupin-support/grub-mkimage ] || \ ! /usr/share/lupin-support/grub-mkimage --test; then return 1 fi local bootdev="$(grub-probe --target=device /boot)" || true local loop_file= case $bootdev in /dev/loop/*|/dev/loop[0-9]) loop_file="$(losetup "$bootdev" | sed -e "s/^[^(]*(\([^)]\+\)).*/\1/")" # If it's loop-mounted from another device, it isn't Wubi. case $loop_file in /dev/*) return 1 ;; esac ;; *) return 1 ;; esac echo "$bootdev" } # This only works on a Linux system with udev running. This is probably the # vast majority of systems where we need any of this, though, and we fall # back reasonably gracefully if we don't have it. cached_available_ids= available_ids() { local id path if [ "$cached_available_ids" ]; then echo "$cached_available_ids" return fi [ -d /dev/disk/by-id ] || return cached_available_ids="$( for path in /dev/disk/by-id/*; do [ -e "$path" ] || continue printf '%s %s\n' "$path" "$(readlink -f "$path")" done | sort -k2 -s -u | cut -d' ' -f1 )" echo "$cached_available_ids" } # Returns non-zero and no output if no mapping can be found. device_to_id() { local id for id in $(available_ids); do if [ "$(readlink -f "$id")" = "$(readlink -f "$1")" ]; then echo "$id" return 0 fi done # Fall back to the plain device name if there's no by-id link for it. if [ -e "$1" ]; then echo "$1" return 0 fi return 1 } all_disks() { local id for id in $(available_ids); do case $id in *-part*) ;; *) echo "$id" ;; esac done } all_partitions() { local id ids ids= for id in $(available_ids); do if [ "$id" != "$1" ] && [ "${id%-part*}" = "$1" ]; then ids="${ids:+$ids }$id" fi done echo "$ids" } # In order to determine whether we accidentally ran grub-install without # upgrade-from-grub-legacy on versions older than 1.98+20100617-1, we need # to be able to scan a disk to determine whether GRUB 2 was installed in its # boot sector. This is specific to i386-pc (but that's the only platform # where we need it). scan_grub2() { if ! dd if="$1" bs=512 count=1 2>/dev/null | grep -aq GRUB; then # No version of GRUB is installed. return 1 fi # The GRUB boot sector always starts with a JMP instruction. initial_jmp="$(dd if="$1" bs=2 count=1 2>/dev/null | od -Ax -tx1 | \ head -n1 | cut -d' ' -f2,3)" [ "$initial_jmp" ] || return 1 initial_jmp_opcode="${initial_jmp%% *}" [ "$initial_jmp_opcode" = eb ] || return 1 initial_jmp_operand="${initial_jmp#* }" case $initial_jmp_operand in 47|4b|4c|63) # I believe this covers all versions of GRUB 2 up to the package # version where we gained a more explicit mechanism. GRUB Legacy # always had 48 here. return 0 ;; esac return 1 } # for Linux sysfs_size() { local num_sectors sector_size size # Try to find out the size without relying on a partitioning tool being # installed. This isn't too hard on Linux 2.6 with sysfs, but we have to # try a couple of variants on detection of the sector size. if [ -e "$1/size" ]; then num_sectors="$(cat "$1/size")" sector_size=512 if [ -e "$1/queue/logical_block_size" ]; then sector_size="$(cat "$1/queue/logical_block_size")" elif [ -e "$1/queue/hw_sector_size" ]; then sector_size="$(cat "$1/queue/hw_sector_size")" fi size="$(expr "$num_sectors" \* "$sector_size" / 1000 / 1000)" fi [ "$size" ] || size='???' echo "$size" } # for kFreeBSD camcontrol_size() { local num_sectors sector_size size= if num_sectors="$(camcontrol readcap "$1" -q -s -N)"; then sector_size="$(camcontrol readcap "$1" -q -b)" size="$(expr "$num_sectors" \* "$sector_size" / 1000 / 1000)" fi [ "$size" ] || size='???' echo "$size" } maybe_udevadm() { if which udevadm >/dev/null 2>&1; then udevadm "$@" || true fi } # Returns value in $RET, like a debconf command. describe_disk() { local disk id sysfs_path disk_basename size model disk="$1" id="$2" model= case $(uname -s) in Linux) sysfs_path="$(maybe_udevadm info -n "$disk" -q path)" if [ -z "$sysfs_path" ]; then sysfs_path="/block/$(printf %s "${disk#/dev/}" | sed 's,/,!,g')" fi size="$(sysfs_size "/sys$sysfs_path")" model="$(maybe_udevadm info -n "$disk" -q property | sed -n 's/^ID_MODEL=//p')" if [ -z "$model" ]; then model="$(maybe_udevadm info -n "$disk" -q property | sed -n 's/^DM_NAME=//p')" if [ -z "$model" ]; then model="$(maybe_udevadm info -n "$disk" -q property | sed -n 's/^MD_NAME=//p')" if [ -z "$model" ] && which dmsetup >/dev/null 2>&1; then model="$(dmsetup info -c --noheadings -o name "$disk" 2>/dev/null || true)" fi fi fi ;; GNU/kFreeBSD) disk_basename=$(basename "$disk") size="$(camcontrol_size "$disk_basename")" model="$(camcontrol inquiry "$disk_basename" | sed -ne "s/^pass0: <\([^>]*\)>.*/\1/p")" ;; esac [ "$model" ] || model='???' db_subst grub-pc/disk_description DEVICE "$disk" db_subst grub-pc/disk_description SIZE "$size" db_subst grub-pc/disk_description MODEL "$model" db_metaget grub-pc/disk_description description } # Returns value in $RET, like a debconf command. describe_partition() { local disk part id path sysfs_path diskbase partbase size disk="$1" part="$2" id="$3" path="$4" sysfs_path="$(maybe_udevadm info -n "$part" -q path)" if [ -z "$sysfs_path" ]; then diskbase="${disk#/dev/}" diskbase="$(printf %s "$diskbase" | sed 's,/,!,g')" partbase="${part#/dev/}" partbase="$(printf %s "$partbase" | sed 's,/,!,g')" sysfs_path="/block/$diskbase/$partbase" fi size="$(sysfs_size "/sys$sysfs_path")" db_subst grub-pc/partition_description DEVICE "$part" db_subst grub-pc/partition_description SIZE "$size" db_subst grub-pc/partition_description PATH "$path" db_metaget grub-pc/partition_description description } usable_partitions() { local last_partition path partition partition_id last_partition= for path in / /boot /boot/grub; do partition="$(grub-probe -t device "$path" || true)" if [ -z "$partition" ] || [ "$partition" = "$last_partition" ]; then continue fi partition_id="$(device_to_id "$partition" || true)" echo "$path:$partition_id" last_partition="$partition" done | sort -t: -k2 } get_mountpoint() { local relpath boot_mountpoint relpath="$(grub-mkrelpath "$1")" boot_mountpoint="${1#$relpath}" echo "${boot_mountpoint:-/}" } # Parse /proc/mounts and find out the mount for the given device. # The device must be a real device in /dev, not a symlink to one. get_mounted_device() { mountpoint="$1" cat /proc/mounts | while read -r line; do set -f set -- $line set +f if [ "$2" = "$mountpoint" ]; then echo "$1" break fi done } config_item() { for x in /etc/default/grub /etc/default/grub.d/*.cfg; do if [ -e "$x" ]; then . "$x" fi done if [ "$(eval echo "\${$1+set}")" = set ]; then eval echo "\$$1" else return fi } running_in_container() { type systemd-detect-virt >/dev/null 2>&1 && systemd-detect-virt --quiet --container } no_nvram_arg() { db_get grub2/update_nvram if [ "$RET" = false ]; then echo "--no-nvram" fi } run_grub_install() { if ! grub-install $@ ; then echo "Failed: grub-install $@" >&2 echo "WARNING: Bootloader is not properly installed, system may not be bootable" >&2 fi } run_grub_multi_install() { if ! /usr/lib/grub/grub-multi-install $@ ; then echo "Failed: grub-install $@" >&2 echo "WARNING: Bootloader is not properly installed, system may not be bootable" >&2 fi } case "$1" in configure) . /usr/share/debconf/confmodule devicemap_regenerated= if [ grub-pc = "grub-efi-amd64" ] && dpkg --compare-versions "$2" lt-nl 2.02-2ubuntu11; then /usr/share/grub/grub-check-signatures fi if egrep -q '^[[:space:]]*post(inst|rm)_hook[[:space:]]*=[[:space:]]*(/sbin/|/usr/sbin/)?update-grub' /etc/kernel-img.conf 2>/dev/null; then echo 'Removing update-grub hooks from /etc/kernel-img.conf in favour of' >&2 echo '/etc/kernel/ hooks.' >&2 sed -ri /etc/kernel-img.conf -e '\%^[[:space:]]*post(inst|rm)_hook[[:space:]]*=[[:space:]]*(/sbin/|/usr/sbin/)?update-grub%d' fi mkdir -p /boot/grub case grub-pc in grub-pc) if test -e /boot/grub/device.map && ! test -e /boot/grub/core.img && \ ! test -e /boot/grub/i386-pc/core.img; then # Looks like your device.map was generated by GRUB Legacy, which # used to generate broken device.map (see #422851). Avoid the risk # by regenerating it. grub-mkdevicemap --no-floppy devicemap_regenerated=1 fi ;; esac if test -z "$devicemap_regenerated" && \ dpkg --compare-versions "$2" lt-nl 1.99~20101210-2 && \ grep -qs /md-uuid- /boot/grub/device.map; then echo "Removing MD devices from device.map, since the BIOS cannot read from these." >&2 sed -i '/\/md-uuid-/d' /boot/grub/device.map fi tmp_default_grub="$(mktemp -t grub.XXXXXXXXXX)" trap "rm -f ${tmp_default_grub}" EXIT cp -p /usr/share/grub/default/grub ${tmp_default_grub} # Apply configuration from debconf to both the template configuration # file (so that any ucf conflict resolution is shown with the configured # values in place) and to /etc/default/grub (in order that debconf # changes are effective even if we have to use UCF_FORCE_CONFFOLD=1). # # The config script takes care to read current values from # /etc/default/grub before possibly prompting the user to change them, # so this should comply with policy's strictures on configuration file # handling: the debconf prompts constitute an explicit administrator # request to change the configuration file. # # If the administrator changes their answers to any of these debconf # questions in the same run as a change to the template, then they'll # get a spurious ucf conflict. To fix this, we'd need to keep track of # the old answers, substitute the old answers into $tmp_default_grub, # and substitute the new answers into /etc/default/grub. Fortunately, # debconf won't normally ask these questions again during an upgrade, so # this should be rare in practice. conf_files="$tmp_default_grub /etc/default/grub" apply_conf_tweaks "$conf_files" merge_debconf_into_conf GRUB_CMDLINE_LINUX grub2/linux_cmdline apply_conf_tweaks "$conf_files" merge_debconf_into_conf GRUB_CMDLINE_LINUX_DEFAULT grub2/linux_cmdline_default case grub-pc in grub-pc) apply_conf_tweaks "$conf_files" merge_debconf_into_conf GRUB_TIMEOUT grub-pc/timeout apply_conf_tweaks "$conf_files" sed_conf 's/^(GRUB_TIMEOUT=)"([0-9][0-9]*)"/\1\2/' db_get grub-pc/hidden_timeout if [ "$RET" = false ]; then apply_conf_tweaks "$conf_files" sed_conf 's/^GRUB_HIDDEN_TIMEOUT=/#&/' fi ;; grub-ieee1275) if grep ^platform /proc/cpuinfo | grep -q PowerNV; then cat <<-EOF >>"$tmp_default_grub" # Disable os-prober for ppc64el on the PowerNV platform (for Petitboot) GRUB_DISABLE_OS_PROBER=true EOF fi ;; esac # If the template configuration file hasn't changed, then no conflict is # possible. ucf can't figure this out for itself since we apply # debconf-based customisations on top of the template configuration # file. if [ -e /var/lib/grub/ucf/grub.previous ] && \ cmp -s /usr/share/grub/default/grub /var/lib/grub/ucf/grub.previous && \ [ -e /etc/default/grub ]; then ucf_env=UCF_FORCE_CONFFOLD=1 else ucf_env= fi env $ucf_env ucf --three-way --debconf-ok --sum-file=/usr/share/grub/default/grub.md5sum "$tmp_default_grub" /etc/default/grub cp -a /usr/share/grub/default/grub /var/lib/grub/ucf/grub.previous package="$(ucfq --with-colons /etc/default/grub | cut -d : -f 2)" if echo $package | grep -q "^grub-" ; then ucfr --force grub-pc /etc/default/grub else ucfr grub-pc /etc/default/grub fi case grub-pc in grub-pc) fix_mixed_system= if test -e /boot/grub/stage2 && test -e /boot/grub/menu.lst && \ ! test -e /boot/grub/grub2-installed && \ test -z "$UPGRADE_FROM_GRUB_LEGACY"; then # Unfortunately, it's still possible that the user upgraded fully # to GRUB 2 in some way other than running # upgrade-from-grub-legacy; perhaps they ran grub-install by hand # for some reason. It's really quite difficult to detect this # situation, because the only difference between this and a # working chainloaded setup is that in this case grub-setup has # been run. So, to try to tell the difference, we scan the boot # sectors of all disks for a GRUB 2 boot sector. Hopefully this # won't cause too much to explode, since I can't think of a better # method. grub2_disks= for disk in $(all_disks); do if scan_grub2 "$disk"; then grub2_disks="${grub2_disks:+$grub2_disks }$(readlink -f "$disk")" fi done if [ "$grub2_disks" ]; then # No || true here; it's vital that the user sees this, and it's # better to throw an error than to do the wrong thing. db_subst grub-pc/mixed_legacy_and_grub2 DISKS "$grub2_disks" db_fset grub-pc/mixed_legacy_and_grub2 seen false db_input critical grub-pc/mixed_legacy_and_grub2 db_go db_get grub-pc/mixed_legacy_and_grub2 if [ "$RET" = true ]; then db_reset grub-pc/install_devices UPGRADE_FROM_GRUB_LEGACY=1 fix_mixed_system=1 # Fall through to normal installation logic. fi fi fi # Make sure that Wubi users never see confusing device prompts. # Wubi is a very specialised hack that does complicated things with # grub-install diversions to create an image that's chained from the # Windows boot loader to boot an operating system from a file on a # Windows file system. In these circumstances, prompting for where # to install GRUB is not going to help anyone. wubi_device="$(get_wubi_device)" || true if [ "$wubi_device" ]; then db_set grub-pc/install_devices "$wubi_device" db_fset grub-pc/install_devices seen true fi if test -e /boot/grub/stage2 && test -e /boot/grub/menu.lst && \ ! test -e /boot/grub/grub2-installed && \ test -z "$UPGRADE_FROM_GRUB_LEGACY"; then db_get grub-pc/chainload_from_menu.lst if $RET ; then # Create core.img (but do not risk writing to MBR). # Using grub-probe instead of "(hd0)" avoids (UUID=) hack slowness # in case /boot/grub is not on (hd0) in device.map. echo "Generating core.img" >&2 grub-install --target=i386-pc --no-floppy --grub-setup=/bin/true "$(grub-probe -t drive /boot/grub)" > /dev/null # Update menu.lst to reflect that: # - core.img is present now # - core.img has to be the first option echo "Saving menu.lst backup in /boot/grub/menu.lst_backup_by_grub2_postinst" >&2 cp /boot/grub/menu.lst{,_backup_by_grub2_postinst} echo "Running update-grub Legacy to hook our core.img in it" >&2 LET_US_TRY_GRUB_2=true /usr/lib/grub-legacy/update-grub 2>&1 | sed -e "s/^/ /g" >&2 # We just hooked GRUB 2 in menu.lst; then also generate grub.cfg. touch /boot/grub/grub.cfg fi elif running_in_container; then # Skip grub-install in containers. : elif dpkg --compare-versions "$2" ge 2.04-1ubuntu26 && [ -z "$DEBCONF_RECONFIGURE" ]; then # Avoid the possibility of breaking grub on SRU update # due to ABI change : elif test -e /boot/grub/core.img || \ test -e /boot/grub/i386-pc/core.img || \ test "$UPGRADE_FROM_GRUB_LEGACY" || test "$wubi_device"; then question=grub-pc/install_devices priority=high device_map="$(grub-mkdevicemap -m - | grep -v '^(fd[0-9]\+)' || true)" devices="$(echo "$device_map" | cut -f2)" db_get grub-pc/install_devices valid=1 for device in $RET; do if [ ! -e "${device%,}" ]; then valid=0 break fi done if [ "$valid" = 0 ]; then question=grub-pc/install_devices_disks_changed priority=critical db_set "$question" "$RET" db_fset "$question" seen false db_fset grub-pc/install_devices_empty seen false fi while :; do ids= descriptions= partitions="$(usable_partitions)" for device in $devices; do disk_id="$(device_to_id "$device" || true)" if [ "$disk_id" ]; then ids="${ids:+$ids, }$disk_id" describe_disk "$(readlink -f "$device")" "$disk_id" RET="$(printf %s "$RET" | sed 's/,/\\,/g')" descriptions="${descriptions:+$descriptions, }$RET" for partition_pair in $partitions; do partition_id="${partition_pair#*:}" if [ "${partition_id#$disk_id-part}" != "$partition_id" ]; then ids="${ids:+$ids, }$partition_id" describe_partition "$(readlink -f "$device")" "$(readlink -f "$partition_id")" "$partition_id" "$(get_mountpoint "${partition_pair%%:*}")" RET="$(printf %s "$RET" | sed 's/,/\\,/g')" descriptions="${descriptions:+$descriptions, }$RET" fi done fi done # Some "partitions" may in fact be at the disk level, e.g. RAID. # List these as well if they haven't already been listed. for partition_pair in $partitions; do partition_id="${partition_pair#*:}" if [ "${partition_id#*-part}" = "$partition_id" ]; then case ", $ids, " in ", $partition_id, ") ;; *) ids="${ids:+$ids, }$partition_id" describe_disk "$(readlink -f "$partition_id")" "$partition_id" RET="$(printf %s "$RET" | sed 's/,/\\,/g')" descriptions="${descriptions:+$descriptions, }$RET" ;; esac fi done db_subst "$question" RAW_CHOICES "$ids" db_subst "$question" CHOICES "$descriptions" db_input "$priority" "$question" || true db_go db_get "$question" failed_devices= for i in `echo $RET | sed -e 's/, / /g'` ; do real_device="$(readlink -f "$i")" if grub-install --target=i386-pc --force --no-floppy $real_device ; then # We just installed GRUB 2; then also generate grub.cfg. touch /boot/grub/grub.cfg else failed_devices="$failed_devices $real_device" fi done if [ "$question" != grub-pc/install_devices ] && [ "$RET" ]; then # XXX cjwatson 2019-02-26: The description of # grub-pc/install_devices_disks_changed ought to explain that # selecting no devices will leave the configuration unchanged # so that you'll be prompted again next time, but it's a bit # close to the Debian 10 release to be introducing new # translatable text. For now, it should be sufficient to # avoid losing configuration data. db_set grub-pc/install_devices "$RET" db_fset grub-pc/install_devices seen true fi if [ "$failed_devices" ]; then if [ "$UPGRADE_FROM_GRUB_LEGACY" ]; then db_subst grub-pc/install_devices_failed_upgrade FAILED_DEVICES "$failed_devices" db_fset grub-pc/install_devices_failed_upgrade seen false if db_input critical grub-pc/install_devices_failed_upgrade; then db_go db_get grub-pc/install_devices_failed_upgrade if [ "$RET" = true ]; then db_fset "$question" seen false db_fset grub-pc/install_devices_failed_upgrade seen false continue else exit 1 fi else exit 1 # noninteractive fi else db_subst grub-pc/install_devices_failed FAILED_DEVICES "$failed_devices" db_fset grub-pc/install_devices_failed seen false if db_input critical grub-pc/install_devices_failed; then db_go db_get grub-pc/install_devices_failed if [ "$RET" = true ]; then break else db_fset "$question" seen false db_fset grub-pc/install_devices_failed seen false continue fi else exit 1 # noninteractive fi fi fi db_get "$question" if [ -z "$RET" ]; then # Reset the seen flag if the current answer is false, since # otherwise we'll loop with no indication of why. db_get grub-pc/install_devices_empty if [ "$RET" = false ]; then db_fset grub-pc/install_devices_empty seen false fi if db_input critical grub-pc/install_devices_empty; then db_go db_get grub-pc/install_devices_empty if [ "$RET" = true ]; then break else db_fset "$question" seen false db_fset grub-pc/install_devices_empty seen false fi else # if question was seen we are done # Otherwise, abort db_fget grub-pc/install_devices_empty seen if [ "$RET" = true ]; then break else exit 1 fi fi else break fi done fi # /boot/grub/ has more chances of being accessible by GRUB for i in /usr/share/grub/unicode.pf2 ; do if test -e $i ; then cp $i /boot/grub/ fi done if [ "$fix_mixed_system" ]; then # These never contain any valuable information, and they aren't # useful for boot any more, since we just overwrote MBR/PBR. rm -f /boot/grub/{{xfs,reiserfs,e2fs,fat,jfs,minix}_stage1_5,stage{1,2}} # Remove marker file used to indicate that grub-install was run # rather than upgrade-from-grub-legacy. Since stage2 has been # removed, we don't need this any more. rm -f /boot/grub/grub2-installed fi ;; grub-efi-ia32|grub-efi-amd64|grub-efi-ia64|grub-efi-arm|grub-efi-arm64) bootloader_id="$(config_item GRUB_DISTRIBUTOR | tr A-Z a-z | \ cut -d' ' -f1)" case $bootloader_id in kubuntu) bootloader_id=ubuntu ;; esac if dpkg --compare-versions "$2" lt-nl 2.02-1~; then # Try to not break people upgrading by suddenly installing things # to /EFI/BOOT without knowing if it might break. db_get grub2/force_efi_extra_removable || true if [ "$RET" = false ]; then db_set grub2/no_efi_extra_removable true db_fset grub2/no_efi_extra_removable seen true fi db_reset grub2/force_efi_extra_removable || true if [ -e "/boot/efi/EFI/${bootloader_id}/fbx64.efi" ]; then rm -f "/boot/efi/EFI/${bootloader_id}/fbx64.efi"; fi fi case grub-pc in grub-efi-ia32) target=i386-efi ;; grub-efi-amd64) target=x86_64-efi ;; grub-efi-ia64) target=ia64-efi ;; grub-efi-arm) target=arm-efi ;; grub-efi-arm64) target=arm64-efi ;; esac # Check /boot/grub to see if we previously installed to an ESP. We don't # want to trigger the install code just by installing the package, # normally the installer installs grub itself first. if test -e /boot/grub/$target/core.efi; then db_get grub2/no_efi_extra_removable if [ "$RET" = true ]; then NO_EXTRA_REMOVABLE="--no-extra-removable" fi NO_NVRAM="$(no_nvram_arg)" run_grub_multi_install --target="$target" "$NO_EXTRA_REMOVABLE" "$NO_NVRAM" fi # /boot/grub/ has more chances of being accessible by GRUB for i in /usr/share/grub/unicode.pf2 ; do if test -e $i ; then cp $i /boot/grub/ fi done if type update-secureboot-policy >/dev/null 2>&1; then update-secureboot-policy || true fi ;; grub-ieee1275) case $(dpkg --print-architecture) in powerpc|ppc64|ppc64el) # Output may be empty; if so, just update the core image but # don't install it to any PReP partition. prep_bootdev="$(/usr/lib/grub/powerpc-ieee1275/prep-bootdev)" NO_NVRAM="$(no_nvram_arg)" run_grub_install --target=powerpc-ieee1275 $prep_bootdev "$NO_NVRAM" ;; esac ;; grub-yeeloong) run_grub_install --target=mipsel-loongson ;; grub-xen) # Install for x86_64 regardless of arch, since a 32-bit userspace can still boot with a 64-bit kernel. mkdir -p /boot/xen run_grub_install --target=x86_64-xen case $(dpkg --print-architecture) in i386) run_grub_install --target=i386-xen ;; esac # Similarly, the PVH boot loader is usable regardless of arch. run_grub_install --target=i386-xen_pvh ;; esac # If grub.cfg has been generated, update it. if test -e /boot/grub/grub.cfg && ! running_in_container; then update-grub 3>&- 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. # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper dir_to_symlink /usr/share/doc/grub-pc grub-common 1.99-1\~ -- "$@" # End automatically added section exit 0
[+]
..
[-] libsasl2-modules-db:amd64.md5sums
[edit]
[-] libapache2-mod-php.md5sums
[edit]
[-] apt.list
[edit]
[-] libseccomp2:amd64.symbols
[edit]
[-] linux-modules-5.15.0-1044-aws.list
[edit]
[-] libisl22:amd64.triggers
[edit]
[-] landscape-common.postrm
[edit]
[-] linux-modules-5.15.0-1038-aws.list
[edit]
[-] libxmlsec1:amd64.shlibs
[edit]
[-] libmysqlclient21:amd64.md5sums
[edit]
[-] tzdata.md5sums
[edit]
[-] groff-base.list
[edit]
[-] linux-image-5.15.0-1017-aws.list
[edit]
[-] systemd-timesyncd.conffiles
[edit]
[-] libefivar1:amd64.triggers
[edit]
[-] libcom-err2:amd64.list
[edit]
[-] libio-html-perl.md5sums
[edit]
[-] ntfs-3g.md5sums
[edit]
[-] ec2-instance-connect.preinst
[edit]
[-] php7.4-bcmath.postinst
[edit]
[-] bcache-tools.triggers
[edit]
[-] liburcu6:amd64.md5sums
[edit]
[-] shared-mime-info.postinst
[edit]
[-] libmspack0:amd64.triggers
[edit]
[-] linux-image-5.15.0-1038-aws.list
[edit]
[-] netbase.md5sums
[edit]
[-] libgdbm-compat4:amd64.list
[edit]
[-] libaudit1:amd64.triggers
[edit]
[-] mysql-common.list
[edit]
[-] linux-image-5.15.0-1084-aws.md5sums
[edit]
[-] libtinfo6:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1023-aws.list
[edit]
[-] libdpkg-perl.md5sums
[edit]
[-] libpam-modules-bin.md5sums
[edit]
[-] at.conffiles
[edit]
[-] gcc.postinst
[edit]
[-] python3-hyperlink.prerm
[edit]
[-] libarchive13:amd64.symbols
[edit]
[-] libdebconfclient0:amd64.md5sums
[edit]
[-] libmysqlclient21:amd64.shlibs
[edit]
[-] linux-modules-5.13.0-1023-aws.list
[edit]
[-] libhtml-template-perl.md5sums
[edit]
[-] linux-modules-5.15.0-1049-aws.postrm
[edit]
[-] linux-image-5.15.0-1045-aws.postrm
[edit]
[-] libmaxminddb0:amd64.md5sums
[edit]
[-] libauparse0:amd64.shlibs
[edit]
[-] libsoup2.4-1:amd64.list
[edit]
[-] grub-pc.templates
[edit]
[-] libpam0g:amd64.list
[edit]
[-] libhogweed5:amd64.triggers
[edit]
[-] librtmp1:amd64.list
[edit]
[-] libreadline8:amd64.shlibs
[edit]
[-] libip4tc2:amd64.list
[edit]
[-] console-setup-linux.md5sums
[edit]
[-] libasn1-8-heimdal:amd64.shlibs
[edit]
[-] install-info.triggers
[edit]
[-] jsonlint.md5sums
[edit]
[-] linux-image-5.15.0-1019-aws.list
[edit]
[-] libhttp-date-perl.md5sums
[edit]
[-] fwupd.postrm
[edit]
[-] libfreetype6:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1081-aws.list
[edit]
[-] bc.list
[edit]
[-] php-pear.list
[edit]
[-] linux-image-5.11.0-1019-aws.list
[edit]
[-] linux-modules-5.4.0-1045-aws.md5sums
[edit]
[-] irqbalance.prerm
[edit]
[-] ucf.postinst
[edit]
[-] linux-modules-5.11.0-1028-aws.postrm
[edit]
[-] pollinate.list
[edit]
[-] libexpat1:amd64.md5sums
[edit]
[-] php-common.md5sums
[edit]
[-] libunwind8:amd64.md5sums
[edit]
[-] man-db.config
[edit]
[-] libxmlb1:amd64.md5sums
[edit]
[-] php7.4-mysql.postrm
[edit]
[-] linux-modules-5.15.0-1033-aws.postrm
[edit]
[-] dpkg.postinst
[edit]
[-] python3-idna.list
[edit]
[-] linux-aws-headers-5.4.0-1045.md5sums
[edit]
[-] klibc-utils.md5sums
[edit]
[-] libudev1:amd64.shlibs
[edit]
[-] linux-image-5.13.0-1021-aws.postrm
[edit]
[-] hdparm.postinst
[edit]
[-] php8.0-mcrypt.conffiles
[edit]
[-] libsgutils2-2.triggers
[edit]
[-] libhx509-5-heimdal:amd64.shlibs
[edit]
[-] libgcrypt20:amd64.triggers
[edit]
[-] linux-image-5.15.0-1062-aws.list
[edit]
[-] linux-image-5.15.0-1022-aws.postrm
[edit]
[-] unixodbc.md5sums
[edit]
[-] python3-pyasn1.postinst
[edit]
[-] linux-modules-5.15.0-1072-aws.postrm
[edit]
[-] alsa-topology-conf.list
[edit]
[-] mssql-tools.templates
[edit]
[-] ftp.md5sums
[edit]
[-] lsb-base.postrm
[edit]
[-] php8.0-cli.md5sums
[edit]
[-] libk5crypto3:amd64.list
[edit]
[-] liblsan0:amd64.shlibs
[edit]
[-] iucode-tool.md5sums
[edit]
[-] netcat-openbsd.prerm
[edit]
[-] ucf.list
[edit]
[-] libproxy1v5:amd64.triggers
[edit]
[-] libpcre2-16-0:amd64.md5sums
[edit]
[-] packagekit-tools.md5sums
[edit]
[-] libpng16-16:amd64.md5sums
[edit]
[-] unattended-upgrades.conffiles
[edit]
[-] findutils.md5sums
[edit]
[-] linux-modules-5.15.0-1017-aws.postrm
[edit]
[-] auditd.conffiles
[edit]
[-] telnet.list
[edit]
[-] dmsetup.list
[edit]
[-] plymouth-theme-ubuntu-text.triggers
[edit]
[-] python3-pymacaroons.prerm
[edit]
[-] libip4tc2:amd64.symbols
[edit]
[-] libapparmor1:amd64.triggers
[edit]
[-] linux-image-5.15.0-1055-aws.list
[edit]
[-] php8.0-gd.md5sums
[edit]
[-] python3-distro.md5sums
[edit]
[-] linux-image-5.15.0-1048-aws.list
[edit]
[-] php8.0-mbstring.list
[edit]
[-] sudo.md5sums
[edit]
[-] sudo.conffiles
[edit]
[-] php8.0-xml.prerm
[edit]
[-] software-properties-common.prerm
[edit]
[-] liblzo2-2:amd64.triggers
[edit]
[-] libc6-dev:amd64.md5sums
[edit]
[-] libpam-runtime.templates
[edit]
[-] libnewt0.52:amd64.shlibs
[edit]
[-] php7.4-common.prerm
[edit]
[-] python3-twisted-bin:amd64.md5sums
[edit]
[-] libpcre3:amd64.symbols
[edit]
[-] libkrb5-26-heimdal:amd64.symbols
[edit]
[-] python3-yaml.postinst
[edit]
[-] apache2.postinst
[edit]
[-] python3-serial.postinst
[edit]
[-] language-selector-common.postrm
[edit]
[-] libperl5.30:amd64.triggers
[edit]
[-] autoconf.md5sums
[edit]
[-] libnftnl11:amd64.list
[edit]
[-] libmpfr6:amd64.list
[edit]
[-] unixodbc-dev.list
[edit]
[-] python3-httplib2.list
[edit]
[-] sg3-utils.list
[edit]
[-] debconf.list
[edit]
[-] php-symfony-expression-language.list
[edit]
[-] python3-twisted.triggers
[edit]
[-] libc6:amd64.templates
[edit]
[-] libmount1:amd64.symbols
[edit]
[-] iproute2.config
[edit]
[-] initramfs-tools-core.conffiles
[edit]
[-] python3-json-pointer.postinst
[edit]
[-] linux-image-5.15.0-1037-aws.list
[edit]
[-] php7.4-bz2.prerm
[edit]
[-] libsgutils2-2.list
[edit]
[-] dpkg.list
[edit]
[-] gsettings-desktop-schemas.md5sums
[edit]
[-] debianutils.postinst
[edit]
[-] libfreetype6:amd64.shlibs
[edit]
[-] php-symfony-finder.list
[edit]
[-] dirmngr.list
[edit]
[-] manpages.list
[edit]
[-] libbz2-1.0:amd64.md5sums
[edit]
[-] mariadb-server-10.3.list
[edit]
[-] apt.triggers
[edit]
[-] apt.postinst
[edit]
[-] libncurses6:amd64.shlibs
[edit]
[-] linux-modules-5.15.0-1062-aws.postrm
[edit]
[-] e2fsprogs.list
[edit]
[-] ntfs-3g.postrm
[edit]
[-] linux-base.postrm
[edit]
[-] libx11-6:amd64.md5sums
[edit]
[-] ec2-instance-connect.list
[edit]
[-] libapparmor1:amd64.symbols
[edit]
[-] python3-pyrsistent:amd64.list
[edit]
[-] systemd.md5sums
[edit]
[-] vim.postinst
[edit]
[-] kmod.conffiles
[edit]
[-] libpam-cap:amd64.conffiles
[edit]
[-] kbd.prerm
[edit]
[-] php7.4-gd.postrm
[edit]
[-] libsqlite3-0:amd64.shlibs
[edit]
[-] libstemmer0d:amd64.md5sums
[edit]
[-] libtext-iconv-perl.list
[edit]
[-] friendly-recovery.md5sums
[edit]
[-] libtext-charwidth-perl.list
[edit]
[-] ubuntu-release-upgrader-core.preinst
[edit]
[-] python3-lazr.uri.md5sums
[edit]
[-] pollinate.prerm
[edit]
[-] libdevmapper1.02.1:amd64.symbols
[edit]
[-] fuse.list
[edit]
[-] python3-newt:amd64.prerm
[edit]
[-] libgcab-1.0-0:amd64.list
[edit]
[-] libjson-c4:amd64.symbols
[edit]
[-] apport.conffiles
[edit]
[-] login.prerm
[edit]
[-] coreutils.postinst
[edit]
[-] libplymouth5:amd64.list
[edit]
[-] python3-entrypoints.postinst
[edit]
[-] php7.4-opcache.postrm
[edit]
[-] gpg.md5sums
[edit]
[-] libgstreamer1.0-0:amd64.shlibs
[edit]
[-] libpsl5:amd64.shlibs
[edit]
[-] linux-image-5.11.0-1017-aws.list
[edit]
[-] libjpeg-turbo8:amd64.triggers
[edit]
[-] libuchardet0:amd64.md5sums
[edit]
[-] php-tcpdf.list
[edit]
[-] libhtml-parser-perl.list
[edit]
[-] php7.4-readline.triggers
[edit]
[-] linux-image-5.15.0-1063-aws.list
[edit]
[-] systemd.postrm
[edit]
[-] diffutils.md5sums
[edit]
[-] linux-modules-5.13.0-1014-aws.postrm
[edit]
[-] git.preinst
[edit]
[-] libpolkit-agent-1-0:amd64.shlibs
[edit]
[-] libxext6:amd64.symbols
[edit]
[-] rsyslog.preinst
[edit]
[-] libdebhelper-perl.list
[edit]
[-] hdparm.prerm
[edit]
[-] libbinutils:amd64.shlibs
[edit]
[-] libisl22:amd64.shlibs
[edit]
[-] mount.list
[edit]
[-] libvorbis0a:amd64.triggers
[edit]
[-] gettext.md5sums
[edit]
[-] php-symfony-cache.list
[edit]
[-] liblzma5:amd64.triggers
[edit]
[-] libunistring2:amd64.triggers
[edit]
[-] open-iscsi.templates
[edit]
[-] gcc-9-base:amd64.md5sums
[edit]
[-] libargon2-1:amd64.triggers
[edit]
[-] libgd3:amd64.shlibs
[edit]
[-] autopoint.md5sums
[edit]
[-] gettext.list
[edit]
[-] linux-modules-5.15.0-1022-aws.list
[edit]
[-] php7.4-zip.postrm
[edit]
[-] libapache2-mod-fcgid.conffiles
[edit]
[-] python3-wadllib.md5sums
[edit]
[-] mariadb-server-10.3.postinst
[edit]
[-] libapache2-mod-php7.4.list
[edit]
[-] linux-headers-aws.md5sums
[edit]
[-] vim-runtime.postinst
[edit]
[-] linux-modules-5.15.0-1039-aws.postrm
[edit]
[-] hibagent.postrm
[edit]
[-] apt.shlibs
[edit]
[-] libcc1-0:amd64.shlibs
[edit]
[-] libacl1:amd64.list
[edit]
[-] libarchive13:amd64.triggers
[edit]
[-] php7.4-bz2.postrm
[edit]
[-] libxmuu1:amd64.triggers
[edit]
[-] librtmp1:amd64.symbols
[edit]
[-] linux-modules-5.8.0-1038-aws.list
[edit]
[-] python3-pyasn1-modules.list
[edit]
[-] libcap-ng0:amd64.symbols
[edit]
[-] libgpg-error0:amd64.triggers
[edit]
[-] autotools-dev.list
[edit]
[-] python3-constantly.list
[edit]
[-] libnewt0.52:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1028-aws.postrm
[edit]
[-] mariadb-common.md5sums
[edit]
[-] libmagic1:amd64.list
[edit]
[-] sosreport.postinst
[edit]
[-] libnewt0.52:amd64.postinst
[edit]
[-] python3-nacl.postinst
[edit]
[-] python3-jinja2.md5sums
[edit]
[-] libevent-2.1-7:amd64.symbols
[edit]
[-] netbase.postrm
[edit]
[-] libapparmor1:amd64.list
[edit]
[-] sudo.postrm
[edit]
[-] lvm2.prerm
[edit]
[-] binutils-common:amd64.list
[edit]
[-] amd64-microcode.postinst
[edit]
[-] at.md5sums
[edit]
[-] linux-modules-5.15.0-1026-aws.postrm
[edit]
[-] libaprutil1:amd64.md5sums
[edit]
[-] php8.0-curl.triggers
[edit]
[-] libxml2:amd64.symbols
[edit]
[-] libcap2:amd64.shlibs
[edit]
[-] liburcu6:amd64.triggers
[edit]
[-] intel-microcode.list
[edit]
[-] locales.postinst
[edit]
[-] glib-networking:amd64.list
[edit]
[-] accountsservice.conffiles
[edit]
[-] motd-news-config.postinst
[edit]
[-] libsystemd0:amd64.shlibs
[edit]
[-] linux-image-5.11.0-1022-aws.list
[edit]
[-] python3-lib2to3.prerm
[edit]
[-] vim-runtime.postrm
[edit]
[-] lvm2.postinst
[edit]
[-] libpython3.8:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1081-aws.postrm
[edit]
[-] python3-newt:amd64.md5sums
[edit]
[-] linux-image-5.15.0-1083-aws.postrm
[edit]
[-] initramfs-tools.conffiles
[edit]
[-] linux-image-5.11.0-1021-aws.list
[edit]
[-] telnet.prerm
[edit]
[-] nano.postinst
[edit]
[-] libcap-ng0:amd64.list
[edit]
[-] python3-attr.md5sums
[edit]
[-] landscape-common.list
[edit]
[-] ec2-instance-connect.postinst
[edit]
[-] php7.4-gd.triggers
[edit]
[-] libfreetype6:amd64.symbols
[edit]
[-] linux-modules-5.13.0-1028-aws.postrm
[edit]
[-] apparmor.list
[edit]
[-] python3-json-pointer.prerm
[edit]
[-] gettext-base.md5sums
[edit]
[-] pastebinit.md5sums
[edit]
[-] libapr1:amd64.shlibs
[edit]
[-] php8.0-zip.postrm
[edit]
[-] mariadb-common.postrm
[edit]
[-] libcroco3:amd64.md5sums
[edit]
[-] grub-pc.postinst
[edit]
[-] libctf0:amd64.list
[edit]
[-] libkeyutils1:amd64.triggers
[edit]
[-] python3-certifi.prerm
[edit]
[-] bash-completion.preinst
[edit]
[-] php7.4-xml.prerm
[edit]
[-] eject.md5sums
[edit]
[-] command-not-found.postinst
[edit]
[-] acpid.conffiles
[edit]
[-] linux-modules-5.15.0-1082-aws.postrm
[edit]
[-] dash.list
[edit]
[-] python3-simplejson.md5sums
[edit]
[-] ucf.postrm
[edit]
[-] linux-image-5.15.0-1067-aws.postrm
[edit]
[-] php8.0-opcache.list
[edit]
[-] rsyslog.prerm
[edit]
[-] php8.0-dev.prerm
[edit]
[-] libmpdec2:amd64.symbols
[edit]
[-] init.md5sums
[edit]
[-] build-essential.list
[edit]
[-] linux-modules-5.8.0-1042-aws.list
[edit]
[-] distro-info-data.md5sums
[edit]
[-] libasan5:amd64.md5sums
[edit]
[-] libapache2-mod-php7.4.postrm
[edit]
[-] dh-autoreconf.md5sums
[edit]
[-] less.postinst
[edit]
[-] libtdb1:amd64.triggers
[edit]
[-] busybox-static.list
[edit]
[-] ethtool.md5sums
[edit]
[-] libcryptsetup12:amd64.md5sums
[edit]
[-] libhcrypto4-heimdal:amd64.list
[edit]
[-] libcap-ng0:amd64.triggers
[edit]
[-] linux-image-5.15.0-1077-aws.list
[edit]
[-] kpartx.list
[edit]
[-] gpg-wks-server.md5sums
[edit]
[-] python3-distro.prerm
[edit]
[-] openssh-server.list
[edit]
[-] initramfs-tools-bin.md5sums
[edit]
[-] mdadm.config
[edit]
[-] xfsprogs.triggers
[edit]
[-] bsdutils.list
[edit]
[-] bc.postrm
[edit]
[-] tar.md5sums
[edit]
[-] python3-distupgrade.prerm
[edit]
[-] libpng16-16:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1015-aws.list
[edit]
[-] libperl5.30:amd64.list
[edit]
[-] linux-image-5.15.0-1072-aws.postrm
[edit]
[-] libjbig0:amd64.list
[edit]
[-] busybox-static.triggers
[edit]
[-] binutils.list
[edit]
[-] microcode-initrd.postinst
[edit]
[-] linux-image-5.15.0-1037-aws.postrm
[edit]
[-] python3-gdbm:amd64.list
[edit]
[-] python3-lib2to3.postinst
[edit]
[-] dash.md5sums
[edit]
[-] phpmyadmin.postrm
[edit]
[-] command-not-found.conffiles
[edit]
[-] dbconfig-mysql.md5sums
[edit]
[-] python3-service-identity.prerm
[edit]
[-] linux-image-5.15.0-1043-aws.postrm
[edit]
[-] php-psr-log.md5sums
[edit]
[-] netplan.io.md5sums
[edit]
[-] policykit-1.prerm
[edit]
[-] libksba8:amd64.list
[edit]
[-] gettext-base.list
[edit]
[-] kmod.postinst
[edit]
[-] busybox-initramfs.md5sums
[edit]
[-] libmpfr6:amd64.shlibs
[edit]
[-] python3-jsonpatch.postrm
[edit]
[-] php-google-recaptcha.list
[edit]
[-] linux-base.postinst
[edit]
[-] python3.8-minimal.preinst
[edit]
[-] rsync.postinst
[edit]
[-] locales.templates
[edit]
[-] networkd-dispatcher.list
[edit]
[-] at.list
[edit]
[-] libgomp1:amd64.list
[edit]
[-] gpg-wks-client.md5sums
[edit]
[-] php7.4-zip.postinst
[edit]
[-] systemd-sysv.md5sums
[edit]
[-] ucf.templates
[edit]
[-] libjs-sphinxdoc.list
[edit]
[-] libdrm2:amd64.list
[edit]
[-] telnet.postinst
[edit]
[-] libwrap0:amd64.postrm
[edit]
[-] perl-modules-5.30.md5sums
[edit]
[-] linux-image-5.15.0-1039-aws.list
[edit]
[-] python3-distro.postinst
[edit]
[-] keyboard-configuration.templates
[edit]
[-] libdrm2:amd64.md5sums
[edit]
[-] msodbcsql17.prerm
[edit]
[-] passwd.preinst
[edit]
[-] vim.list
[edit]
[-] odbcinst.md5sums
[edit]
[-] linux-image-5.15.0-1071-aws.list
[edit]
[-] libodbc1:amd64.symbols
[edit]
[-] linux-modules-5.13.0-1031-aws.list
[edit]
[-] libcbor0.6:amd64.shlibs
[edit]
[-] networkd-dispatcher.postrm
[edit]
[-] libmaxminddb0:amd64.list
[edit]
[-] libx11-6:amd64.list
[edit]
[-] msodbcsql17.templates
[edit]
[-] friendly-recovery.postinst
[edit]
[-] libpsl5:amd64.symbols
[edit]
[-] libplymouth5:amd64.triggers
[edit]
[-] distro-info.md5sums
[edit]
[-] logrotate.postinst
[edit]
[-] libnss-systemd:amd64.shlibs
[edit]
[-] libfontconfig1:amd64.md5sums
[edit]
[-] libgdbm6:amd64.triggers
[edit]
[-] libnftnl11:amd64.triggers
[edit]
[-] python3-commandnotfound.md5sums
[edit]
[-] libpolkit-gobject-1-0:amd64.symbols
[edit]
[-] libip4tc2:amd64.md5sums
[edit]
[-] libaccountsservice0:amd64.md5sums
[edit]
[-] linux-modules-5.11.0-1017-aws.postrm
[edit]
[-] php7.4-common.md5sums
[edit]
[-] hibagent.prerm
[edit]
[-] libsys-hostname-long-perl.list
[edit]
[-] libfwupd2:amd64.symbols
[edit]
[-] hdparm.postrm
[edit]
[-] python3-colorama.list
[edit]
[-] linux-modules-5.15.0-1058-aws.postrm
[edit]
[-] libuuid1:amd64.list
[edit]
[-] php7.4-readline.prerm
[edit]
[-] vim.preinst
[edit]
[-] init.list
[edit]
[-] dmidecode.list
[edit]
[-] libogg0:amd64.symbols
[edit]
[-] debconf.preinst
[edit]
[-] libkrb5-3:amd64.symbols
[edit]
[-] libfontconfig1:amd64.shlibs
[edit]
[-] cloud-init.templates
[edit]
[-] gzip.list
[edit]
[-] python3-automat.postinst
[edit]
[-] console-setup.templates
[edit]
[-] libaprutil1-dbd-sqlite3:amd64.md5sums
[edit]
[-] libattr1:amd64.symbols
[edit]
[-] xdg-user-dirs.prerm
[edit]
[-] linux-modules-5.8.0-1042-aws.postrm
[edit]
[-] python3-simplejson.prerm
[edit]
[-] libatm1:amd64.symbols
[edit]
[-] python3-jsonpatch.md5sums
[edit]
[-] php-twig-extensions.md5sums
[edit]
[-] gdisk.list
[edit]
[-] libefiboot1:amd64.md5sums
[edit]
[-] libnuma1:amd64.list
[edit]
[-] libhtml-tagset-perl.md5sums
[edit]
[-] libp11-kit0:amd64.md5sums
[edit]
[-] sg3-utils-udev.list
[edit]
[-] libxtables12:amd64.triggers
[edit]
[-] php7.4-curl.list
[edit]
[-] bash-completion.md5sums
[edit]
[-] systemd-timesyncd.list
[edit]
[-] libfile-fcntllock-perl.md5sums
[edit]
[-] libitm1:amd64.shlibs
[edit]
[-] logsave.md5sums
[edit]
[-] libdns-export1109.md5sums
[edit]
[-] multipath-tools.md5sums
[edit]
[-] apparmor.postrm
[edit]
[-] libxcb1:amd64.symbols
[edit]
[-] console-setup-linux.prerm
[edit]
[-] libcrypt1:amd64.triggers
[edit]
[-] iputils-ping.postinst
[edit]
[-] php7.4-intl.preinst
[edit]
[-] libmnl0:amd64.shlibs
[edit]
[-] libkmod2:amd64.md5sums
[edit]
[-] libgmp10:amd64.triggers
[edit]
[-] python3-ptyprocess.list
[edit]
[-] xdg-user-dirs.postrm
[edit]
[-] cloud-initramfs-copymods.postrm
[edit]
[-] fontconfig-config.md5sums
[edit]
[-] python3-twisted.list
[edit]
[-] libaprutil1:amd64.triggers
[edit]
[-] libmcrypt4.shlibs
[edit]
[-] libxmlb1:amd64.triggers
[edit]
[-] linux-base.list
[edit]
[-] libunwind8:amd64.triggers
[edit]
[-] libstemmer0d:amd64.list
[edit]
[-] php7.4.list
[edit]
[-] linux-aws-5.15-headers-5.15.0-1081.list
[edit]
[-] ncurses-bin.list
[edit]
[-] python3-keyring.postinst
[edit]
[-] linux-modules-5.11.0-1019-aws.list
[edit]
[-] python3-lib2to3.md5sums
[edit]
[-] php7.4-bz2.postinst
[edit]
[-] libpython3.8-minimal:amd64.list
[edit]
[-] udev.conffiles
[edit]
[-] libdrm-common.md5sums
[edit]
[-] screen.postrm
[edit]
[-] python3-update-manager.md5sums
[edit]
[-] gnupg-l10n.list
[edit]
[-] libplymouth5:amd64.md5sums
[edit]
[-] libsasl2-2:amd64.shlibs
[edit]
[-] grub-common.conffiles
[edit]
[-] libsmartcols1:amd64.md5sums
[edit]
[-] php8.0-common.list
[edit]
[-] libssh-4:amd64.shlibs
[edit]
[-] bash.conffiles
[edit]
[-] php7.4-json.postinst
[edit]
[-] php7.4-bz2.list
[edit]
[-] php8.0-gd.postrm
[edit]
[-] apport.prerm
[edit]
[-] libpcap0.8:amd64.md5sums
[edit]
[-] python3-minimal.list
[edit]
[-] galera-3.md5sums
[edit]
[-] libtinfo6:amd64.symbols
[edit]
[-] dmsetup.md5sums
[edit]
[-] liblz4-1:amd64.triggers
[edit]
[-] e2fsprogs.preinst
[edit]
[-] php7.4-sqlite3.preinst
[edit]
[-] libicu66:amd64.triggers
[edit]
[-] libmpc3:amd64.md5sums
[edit]
[-] libselinux1:amd64.md5sums
[edit]
[-] debianutils.md5sums
[edit]
[-] linux-image-5.15.0-1068-aws.list
[edit]
[-] php7.4-fpm.list
[edit]
[-] php8.0-mbstring.triggers
[edit]
[-] odbcinst1debian2:amd64.list
[edit]
[-] microcode-initrd.list
[edit]
[-] libencode-locale-perl.md5sums
[edit]
[-] autoconf.conffiles
[edit]
[-] libctf-nobfd0:amd64.md5sums
[edit]
[-] python3-configobj.md5sums
[edit]
[-] dirmngr.postinst
[edit]
[-] finalrd.list
[edit]
[-] usb.ids.md5sums
[edit]
[-] linux-modules-5.15.0-1031-aws.list
[edit]
[-] less.md5sums
[edit]
[-] automake.list
[edit]
[-] bind9-host.list
[edit]
[-] python3-incremental.list
[edit]
[-] libcrypt-dev:amd64.md5sums
[edit]
[-] libnss-systemd:amd64.md5sums
[edit]
[-] python3-simplejson.postinst
[edit]
[-] mariadb-client-10.3.postinst
[edit]
[-] mariadb-client-core-10.3.md5sums
[edit]
[-] screen.conffiles
[edit]
[-] libpam-runtime.md5sums
[edit]
[-] xfsprogs.list
[edit]
[-] systemd-timesyncd.postinst
[edit]
[-] linux-modules-5.15.0-1084-aws.md5sums
[edit]
[-] php-phpmyadmin-sql-parser.list
[edit]
[-] unzip.list
[edit]
[-] libssl1.1:amd64.templates
[edit]
[-] python3-problem-report.prerm
[edit]
[-] php7.4-sqlite3.triggers
[edit]
[-] libtool.md5sums
[edit]
[-] libpam0g:amd64.templates
[edit]
[-] login.preinst
[edit]
[-] console-setup.postinst
[edit]
[-] libzip4:amd64.triggers
[edit]
[-] open-iscsi.postinst
[edit]
[-] linux-modules-5.15.0-1051-aws.postrm
[edit]
[-] libpng16-16:amd64.list
[edit]
[-] linux-modules-5.15.0-1023-aws.list
[edit]
[-] zerofree.md5sums
[edit]
[-] libalgorithm-diff-perl.list
[edit]
[-] libasound2:amd64.md5sums
[edit]
[-] libfwupdplugin1:amd64.md5sums
[edit]
[-] ed.postinst
[edit]
[-] libdb5.3:amd64.shlibs
[edit]
[-] libnetplan0:amd64.list
[edit]
[-] libgcc-9-dev:amd64.list
[edit]
[-] acpid.md5sums
[edit]
[-] linux-image-5.15.0-1026-aws.list
[edit]
[-] libwebp6:amd64.triggers
[edit]
[-] libkrb5-3:amd64.md5sums
[edit]
[-] libsigsegv2:amd64.shlibs
[edit]
[-] libgssapi-krb5-2:amd64.md5sums
[edit]
[-] liblmdb0:amd64.triggers
[edit]
[-] cpp.list
[edit]
[-] libnftnl11:amd64.md5sums
[edit]
[-] accountsservice.postrm
[edit]
[-] libarchive13:amd64.md5sums
[edit]
[-] libgnutls30:amd64.symbols
[edit]
[-] python3-launchpadlib.prerm
[edit]
[-] libpam-systemd:amd64.list
[edit]
[-] gawk.md5sums
[edit]
[-] libcom-err2:amd64.symbols
[edit]
[-] odbcinst1debian2:amd64.postinst
[edit]
[-] python3-update-manager.list
[edit]
[-] libatm1:amd64.list
[edit]
[-] usb.ids.list
[edit]
[-] landscape-common.prerm
[edit]
[-] amd64-microcode.md5sums
[edit]
[-] base-passwd.templates
[edit]
[-] cpio.md5sums
[edit]
[-] plymouth-theme-ubuntu-text.postrm
[edit]
[-] libfdisk1:amd64.triggers
[edit]
[-] libgpg-error0:amd64.shlibs
[edit]
[-] unattended-upgrades.preinst
[edit]
[-] util-linux.postinst
[edit]
[-] distro-info.list
[edit]
[-] php8.0-mcrypt.prerm
[edit]
[-] usbutils.list
[edit]
[-] phpmyadmin.list
[edit]
[-] linux-image-5.13.0-1017-aws.postrm
[edit]
[-] php8.0-readline.md5sums
[edit]
[-] wget.conffiles
[edit]
[-] libpopt0:amd64.symbols
[edit]
[-] libusb-1.0-0:amd64.symbols
[edit]
[-] libmcrypt4.list
[edit]
[-] php7.4-opcache.md5sums
[edit]
[-] adduser.list
[edit]
[-] fwupd-signed.list
[edit]
[-] libubsan1:amd64.list
[edit]
[-] libmagic-mgc.list
[edit]
[-] linux-image-5.15.0-1081-aws.prerm
[edit]
[-] libgstreamer1.0-0:amd64.symbols
[edit]
[-] libnuma1:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1080-aws.postrm
[edit]
[-] libwrap0:amd64.shlibs
[edit]
[-] libhcrypto4-heimdal:amd64.md5sums
[edit]
[-] libatm1:amd64.shlibs
[edit]
[-] libproxy1v5:amd64.list
[edit]
[-] python3-commandnotfound.list
[edit]
[-] screen.md5sums
[edit]
[-] libfwupd2:amd64.list
[edit]
[-] php-symfony-finder.md5sums
[edit]
[-] linux-modules-5.13.0-1028-aws.list
[edit]
[-] libgssapi-krb5-2:amd64.postinst
[edit]
[-] screen.preinst
[edit]
[-] tcpdump.conffiles
[edit]
[-] python3-blinker.prerm
[edit]
[-] php7.4-fpm.md5sums
[edit]
[-] python3-more-itertools.list
[edit]
[-] apache2.list
[edit]
[-] icc-profiles-free.md5sums
[edit]
[-] bcache-tools.md5sums
[edit]
[-] php7.4-gd.prerm
[edit]
[-] bash-completion.postinst
[edit]
[-] libdebhelper-perl.md5sums
[edit]
[-] eject.list
[edit]
[-] php7.4-intl.postinst
[edit]
[-] wget.md5sums
[edit]
[-] procps.preinst
[edit]
[-] php7.4-common.preinst
[edit]
[-] libio-html-perl.list
[edit]
[-] libpackagekit-glib2-18:amd64.symbols
[edit]
[-] iucode-tool.list
[edit]
[-] python3-twisted.postinst
[edit]
[-] tcpdump.postrm
[edit]
[-] python3-blinker.postinst
[edit]
[-] libyaml-0-2:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1015-aws.list
[edit]
[-] hostname.list
[edit]
[-] python3-distupgrade.list
[edit]
[-] linux-modules-5.15.0-1065-aws.postrm
[edit]
[-] python3-ptyprocess.md5sums
[edit]
[-] libuchardet0:amd64.shlibs
[edit]
[-] libpcre2-16-0:amd64.list
[edit]
[-] popularity-contest.list
[edit]
[-] cryptsetup.postinst
[edit]
[-] php-mysql.list
[edit]
[-] libgusb2:amd64.list
[edit]
[-] php8.0-readline.postrm
[edit]
[-] pkg-php-tools.list
[edit]
[-] libffi7:amd64.md5sums
[edit]
[-] libxau6:amd64.md5sums
[edit]
[-] linux-image-5.15.0-1084-aws.triggers
[edit]
[-] python3-urllib3.prerm
[edit]
[-] libreadline5:amd64.list
[edit]
[-] php-symfony-process.md5sums
[edit]
[-] php8.0-dev.postinst
[edit]
[-] libncurses6:amd64.md5sums
[edit]
[-] cryptsetup-initramfs.prerm
[edit]
[-] libapache2-mod-php8.0.list
[edit]
[-] libpolkit-gobject-1-0:amd64.triggers
[edit]
[-] linux-aws-headers-5.4.0-1045.list
[edit]
[-] linux-image-5.15.0-1021-aws.postrm
[edit]
[-] libvorbisfile3:amd64.symbols
[edit]
[-] php7.4-json.postrm
[edit]
[-] libuv1:amd64.md5sums
[edit]
[-] libxmuu1:amd64.shlibs
[edit]
[-] inotify-tools.md5sums
[edit]
[-] libuv1:amd64.shlibs
[edit]
[-] git-man.list
[edit]
[-] ssl-cert.templates
[edit]
[-] git.postrm
[edit]
[-] libuuid1:amd64.md5sums
[edit]
[-] unattended-upgrades.templates
[edit]
[-] open-vm-tools.conffiles
[edit]
[-] python3-lazr.restfulclient.prerm
[edit]
[-] ssh-import-id.conffiles
[edit]
[-] libbsd0:amd64.md5sums
[edit]
[-] linux-image-5.15.0-1081-aws.postrm
[edit]
[-] python3-secretstorage.postinst
[edit]
[-] libsub-override-perl.list
[edit]
[-] overlayroot.md5sums
[edit]
[-] python3-software-properties.postinst
[edit]
[-] libatomic1:amd64.triggers
[edit]
[-] bolt.postinst
[edit]
[-] update-notifier-common.triggers
[edit]
[-] libxdmcp6:amd64.triggers
[edit]
[-] snapd.conffiles
[edit]
[-] man-db.conffiles
[edit]
[-] libltdl-dev:amd64.list
[edit]
[-] ec2-hibinit-agent.postrm
[edit]
[-] msodbcsql17.changelog
[edit]
[-] tcpdump.list
[edit]
[-] ubuntu-advantage-tools.list
[edit]
[-] python3-chardet.list
[edit]
[-] secureboot-db.list
[edit]
[-] libjs-jquery.md5sums
[edit]
[-] ufw.preinst
[edit]
[-] linux-modules-5.15.0-1033-aws.list
[edit]
[-] cron.list
[edit]
[-] bsdmainutils.postinst
[edit]
[-] libpcre2-posix2:amd64.shlibs
[edit]
[-] libuchardet0:amd64.symbols
[edit]
[-] linux-aws-5.15-headers-5.15.0-1084.md5sums
[edit]
[-] libgirepository-1.0-1:amd64.triggers
[edit]
[-] tzdata.config
[edit]
[-] inotify-tools.list
[edit]
[-] liblzo2-2:amd64.list
[edit]
[-] libudev1:amd64.symbols
[edit]
[-] automake.preinst
[edit]
[-] python3-click.prerm
[edit]
[-] mariadb-server-core-10.3.list
[edit]
[-] php-dev.md5sums
[edit]
[-] logrotate.conffiles
[edit]
[-] libapache2-mod-fcgid.list
[edit]
[-] libtasn1-6:amd64.shlibs
[edit]
[-] libjansson4:amd64.triggers
[edit]
[-] libheimbase1-heimdal:amd64.md5sums
[edit]
[-] fuse.conffiles
[edit]
[-] libroken18-heimdal:amd64.md5sums
[edit]
[-] glib-networking-common.md5sums
[edit]
[-] linux-image-5.15.0-1052-aws.list
[edit]
[-] liblwp-mediatypes-perl.list
[edit]
[-] linux-modules-5.15.0-1061-aws.list
[edit]
[-] open-vm-tools.preinst
[edit]
[-] libpam-modules:amd64.conffiles
[edit]
[-] dbus.triggers
[edit]
[-] libicu66:amd64.shlibs
[edit]
[-] php7.4-fpm.conffiles
[edit]
[-] php-phpmyadmin-shapefile.md5sums
[edit]
[-] libquadmath0:amd64.triggers
[edit]
[-] libstdc++-9-dev:amd64.list
[edit]
[-] linux-image-5.13.0-1021-aws.list
[edit]
[-] python3-blinker.md5sums
[edit]
[-] php-curl.md5sums
[edit]
[-] python3-yaml.md5sums
[edit]
[-] libdevmapper-event1.02.1:amd64.list
[edit]
[-] python3-httplib2.md5sums
[edit]
[-] grep.list
[edit]
[-] libinotifytools0:amd64.shlibs
[edit]
[-] libpam0g:amd64.shlibs
[edit]
[-] libpython3.8-stdlib:amd64.list
[edit]
[-] libjs-underscore.list
[edit]
[-] libhtml-tagset-perl.list
[edit]
[-] acpid.postrm
[edit]
[-] python3-certifi.list
[edit]
[-] libalgorithm-diff-perl.md5sums
[edit]
[-] python3-hyperlink.list
[edit]
[-] linux-modules-5.15.0-1067-aws.postrm
[edit]
[-] ncurses-base.list
[edit]
[-] libsystemd0:amd64.triggers
[edit]
[-] ca-certificates.md5sums
[edit]
[-] mariadb-server-10.3.preinst
[edit]
[-] php-phpseclib.md5sums
[edit]
[-] libmpc3:amd64.list
[edit]
[-] libcurl4:amd64.triggers
[edit]
[-] bind9-dnsutils.list
[edit]
[-] cryptsetup-initramfs.conffiles
[edit]
[-] php-symfony-cache.md5sums
[edit]
[-] linux-modules-5.11.0-1021-aws.postrm
[edit]
[-] linux-modules-5.15.0-1084-aws.list
[edit]
[-] libgpm2:amd64.symbols
[edit]
[-] php7.4-mbstring.postinst
[edit]
[-] apparmor.config
[edit]
[-] linux-modules-5.8.0-1038-aws.postrm
[edit]
[-] libfdisk1:amd64.symbols
[edit]
[-] libapache2-mod-php8.0.prerm
[edit]
[-] cloud-init.list
[edit]
[-] groff-base.md5sums
[edit]
[-] libkrb5-3:amd64.triggers
[edit]
[-] python3-urllib3.list
[edit]
[-] libcryptsetup12:amd64.list
[edit]
[-] libtss2-esys0.list
[edit]
[-] libzstd1:amd64.triggers
[edit]
[-] libcc1-0:amd64.md5sums
[edit]
[-] linux-modules-5.13.0-1031-aws.postrm
[edit]
[-] procps.md5sums
[edit]
[-] unattended-upgrades.postrm
[edit]
[-] iputils-tracepath.list
[edit]
[-] libnss-systemd:amd64.list
[edit]
[-] apt.conffiles
[edit]
[-] php7.4-fpm.prerm
[edit]
[-] netplan.io.list
[edit]
[-] libklibc:amd64.md5sums
[edit]
[-] python3-distupgrade.md5sums
[edit]
[-] linux-image-5.11.0-1019-aws.postrm
[edit]
[-] byobu.postrm
[edit]
[-] linux-image-5.11.0-1027-aws.postrm
[edit]
[-] whiptail.list
[edit]
[-] linux-image-5.15.0-1030-aws.postrm
[edit]
[-] ca-certificates.postrm
[edit]
[-] libappstream4:amd64.triggers
[edit]
[-] sensible-utils.list
[edit]
[-] linux-modules-5.15.0-1083-aws.postrm
[edit]
[-] php7.4-bz2.md5sums
[edit]
[-] libssh-4:amd64.md5sums
[edit]
[-] libpopt0:amd64.md5sums
[edit]
[-] php7.4-readline.md5sums
[edit]
[-] shtool.md5sums
[edit]
[-] linux-image-5.8.0-1038-aws.list
[edit]
[-] libgpgme11:amd64.list
[edit]
[-] install-info.list
[edit]
[-] dash.templates
[edit]
[-] popularity-contest.postrm
[edit]
[-] linux-image-5.15.0-1058-aws.postrm
[edit]
[-] udev.preinst
[edit]
[-] linux-modules-5.15.0-1022-aws.postrm
[edit]
[-] libonig5:amd64.symbols
[edit]
[-] apache2-bin.list
[edit]
[-] python3-json-pointer.md5sums
[edit]
[-] liblmdb0:amd64.shlibs
[edit]
[-] php8.0-curl.list
[edit]
[-] libgdbm6:amd64.list
[edit]
[-] libgssapi-krb5-2:amd64.triggers
[edit]
[-] python3-urllib3.postinst
[edit]
[-] php-phpmyadmin-shapefile.list
[edit]
[-] linux-modules-5.15.0-1081-aws.postinst
[edit]
[-] liberror-perl.md5sums
[edit]
[-] libgstreamer1.0-0:amd64.list
[edit]
[-] command-not-found.list
[edit]
[-] tpm-udev.list
[edit]
[-] ubuntu-advantage-tools.postinst
[edit]
[-] liblz4-1:amd64.shlibs
[edit]
[-] ec2-hibinit-agent.md5sums
[edit]
[-] secureboot-db.md5sums
[edit]
[-] python3-click.postinst
[edit]
[-] libsmartcols1:amd64.triggers
[edit]
[-] sysvinit-utils.md5sums
[edit]
[-] tmux.md5sums
[edit]
[-] libxau6:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1077-aws.list
[edit]
[-] libsub-override-perl.md5sums
[edit]
[-] libapparmor1:amd64.md5sums
[edit]
[-] python3-newt:amd64.postinst
[edit]
[-] dpkg-dev.list
[edit]
[-] libapache2-mod-fcgid.prerm
[edit]
[-] libjson-glib-1.0-common.list
[edit]
[-] libgd3:amd64.md5sums
[edit]
[-] gpgconf.md5sums
[edit]
[-] libcurl4:amd64.symbols
[edit]
[-] time.list
[edit]
[-] info.md5sums
[edit]
[-] php8.0-mysql.md5sums
[edit]
[-] vim-runtime.preinst
[edit]
[-] libslang2:amd64.shlibs
[edit]
[-] php8.0-xml.preinst
[edit]
[-] dbconfig-mysql.list
[edit]
[-] libpopt0:amd64.shlibs
[edit]
[-] gnupg-l10n.md5sums
[edit]
[-] libacl1:amd64.md5sums
[edit]
[-] krb5-locales.md5sums
[edit]
[-] libnghttp2-14:amd64.shlibs
[edit]
[-] liblzma5:amd64.shlibs
[edit]
[-] perl.list
[edit]
[-] linux-image-5.15.0-1081-aws.preinst
[edit]
[-] libtasn1-6:amd64.md5sums
[edit]
[-] python3-cryptography.postinst
[edit]
[-] debconf.conffiles
[edit]
[-] php-tcpdf.md5sums
[edit]
[-] mssql-tools.postrm
[edit]
[-] linux-modules-5.11.0-1016-aws.postrm
[edit]
[-] libsystemd0:amd64.symbols
[edit]
[-] alsa-ucm-conf.md5sums
[edit]
[-] libpcre3:amd64.md5sums
[edit]
[-] secureboot-db.prerm
[edit]
[-] linux-image-aws.list
[edit]
[-] libsmbios-c2.shlibs
[edit]
[-] libwrap0:amd64.list
[edit]
[-] php8.0-zip.triggers
[edit]
[-] libogg0:amd64.list
[edit]
[-] libjpeg-turbo8:amd64.symbols
[edit]
[-] libunistring2:amd64.shlibs
[edit]
[-] libprocps8:amd64.list
[edit]
[-] libpam-modules:amd64.list
[edit]
[-] mawk.postinst
[edit]
[-] openssh-server.md5sums
[edit]
[-] linux-image-5.15.0-1041-aws.postrm
[edit]
[-] libfido2-1:amd64.triggers
[edit]
[-] libjpeg8:amd64.md5sums
[edit]
[-] libpam-runtime.conffiles
[edit]
[-] odbcinst1debian2:amd64.md5sums
[edit]
[-] libvorbis0a:amd64.symbols
[edit]
[-] shtool.list
[edit]
[-] pollinate.postinst
[edit]
[-] libtsan0:amd64.list
[edit]
[-] libkeyutils1:amd64.symbols
[edit]
[-] plymouth-theme-ubuntu-text.postinst
[edit]
[-] python3-jwt.list
[edit]
[-] librtmp1:amd64.shlibs
[edit]
[-] python3.list
[edit]
[-] logrotate.postrm
[edit]
[-] libsigsegv2:amd64.md5sums
[edit]
[-] open-vm-tools.triggers
[edit]
[-] vim-tiny.list
[edit]
[-] libgcab-1.0-0:amd64.triggers
[edit]
[-] php8.0-readline.prerm
[edit]
[-] jsonlint.list
[edit]
[-] uuid-runtime.conffiles
[edit]
[-] init-system-helpers.list
[edit]
[-] whiptail.preinst
[edit]
[-] libxmlsec1:amd64.md5sums
[edit]
[-] libzip4:amd64.shlibs
[edit]
[-] libnghttp2-14:amd64.md5sums
[edit]
[-] secureboot-db.postinst
[edit]
[-] liburi-perl.list
[edit]
[-] libreadline5:amd64.triggers
[edit]
[-] libgssapi-krb5-2:amd64.symbols
[edit]
[-] rsync.prerm
[edit]
[-] libaprutil1-ldap:amd64.md5sums
[edit]
[-] unattended-upgrades.postinst
[edit]
[-] python3-configobj.prerm
[edit]
[-] libusb-1.0-0:amd64.md5sums
[edit]
[-] libkrb5-3:amd64.shlibs
[edit]
[-] libc-bin.md5sums
[edit]
[-] libsemanage-common.list
[edit]
[-] python3-netifaces.md5sums
[edit]
[-] libblkid1:amd64.list
[edit]
[-] php7.4-curl.triggers
[edit]
[-] linux-image-5.15.0-1027-aws.postrm
[edit]
[-] liburcu6:amd64.list
[edit]
[-] libfwupd2:amd64.triggers
[edit]
[-] libkrb5-26-heimdal:amd64.list
[edit]
[-] php7.4-opcache.prerm
[edit]
[-] libhttp-message-perl.list
[edit]
[-] ubuntu-standard.md5sums
[edit]
[-] linux-image-5.15.0-1081-aws.md5sums
[edit]
[-] libatomic1:amd64.symbols
[edit]
[-] libtiff5:amd64.list
[edit]
[-] libjansson4:amd64.symbols
[edit]
[-] libappstream4:amd64.symbols
[edit]
[-] language-selector-common.list
[edit]
[-] linux-image-5.13.0-1014-aws.list
[edit]
[-] iputils-tracepath.prerm
[edit]
[-] python3-launchpadlib.md5sums
[edit]
[-] libnss-systemd:amd64.postinst
[edit]
[-] gawk.conffiles
[edit]
[-] linux-image-5.13.0-1017-aws.list
[edit]
[-] libc6:amd64.md5sums
[edit]
[-] php7.4-mbstring.postrm
[edit]
[-] linux-image-5.11.0-1027-aws.list
[edit]
[-] libtasn1-6:amd64.list
[edit]
[-] linux-image-5.15.0-1061-aws.list
[edit]
[-] python3-pyasn1.list
[edit]
[-] linux-image-5.15.0-1083-aws.list
[edit]
[-] git.postinst
[edit]
[-] libpython3.8-minimal:amd64.conffiles
[edit]
[-] perl.preinst
[edit]
[-] python3-more-itertools.prerm
[edit]
[-] open-iscsi.preinst
[edit]
[-] grub-pc-bin.md5sums
[edit]
[-] libsepol1:amd64.triggers
[edit]
[-] libpopt0:amd64.list
[edit]
[-] php7.4-bcmath.triggers
[edit]
[-] libxext6:amd64.triggers
[edit]
[-] libdbus-1-3:amd64.triggers
[edit]
[-] libvorbisfile3:amd64.md5sums
[edit]
[-] libdbus-1-3:amd64.md5sums
[edit]
[-] ufw.postrm
[edit]
[-] plymouth-theme-ubuntu-text.md5sums
[edit]
[-] dmidecode.md5sums
[edit]
[-] php7.4-intl.prerm
[edit]
[-] liblzo2-2:amd64.symbols
[edit]
[-] libncurses6:amd64.triggers
[edit]
[-] linux-image-5.15.0-1052-aws.postrm
[edit]
[-] libtss2-esys0.md5sums
[edit]
[-] libpcre2-posix2:amd64.triggers
[edit]
[-] systemd-sysv.list
[edit]
[-] php7.4-intl.md5sums
[edit]
[-] xkb-data.md5sums
[edit]
[-] libexpat1:amd64.triggers
[edit]
[-] base-passwd.postrm
[edit]
[-] linux-image-5.15.0-1027-aws.list
[edit]
[-] binutils-common:amd64.md5sums
[edit]
[-] libsmartcols1:amd64.shlibs
[edit]
[-] libapparmor1:amd64.shlibs
[edit]
[-] vim.md5sums
[edit]
[-] libpython3-stdlib:amd64.list
[edit]
[-] linux-modules-5.15.0-1051-aws.list
[edit]
[-] libnettle7:amd64.list
[edit]
[-] libsemanage1:amd64.list
[edit]
[-] po-debconf.list
[edit]
[-] open-vm-tools.postinst
[edit]
[-] libssh-4:amd64.triggers
[edit]
[-] unzip.postinst
[edit]
[-] python3-automat.prerm
[edit]
[-] libfribidi0:amd64.symbols
[edit]
[-] python3-apt.list
[edit]
[-] libacl1:amd64.shlibs
[edit]
[-] libltdl7:amd64.triggers
[edit]
[-] libudev1:amd64.list
[edit]
[-] byobu.prerm
[edit]
[-] php8.0-common.md5sums
[edit]
[-] python3-twisted.md5sums
[edit]
[-] libdbus-1-3:amd64.symbols
[edit]
[-] php-psr-container.list
[edit]
[-] libsgutils2-2.shlibs
[edit]
[-] libkrb5-3:amd64.list
[edit]
[-] libxdmcp6:amd64.list
[edit]
[-] libxmlb1:amd64.list
[edit]
[-] perl-base.md5sums
[edit]
[-] libfile-fcntllock-perl.list
[edit]
[-] linux-image-5.15.0-1020-aws.postrm
[edit]
[-] fwupd.prerm
[edit]
[-] libglib2.0-0:amd64.shlibs
[edit]
[-] eatmydata.list
[edit]
[-] pinentry-curses.prerm
[edit]
[-] libpam-runtime.list
[edit]
[-] python3-twisted.postrm
[edit]
[-] libalgorithm-diff-xs-perl.list
[edit]
[-] libasound2-data.md5sums
[edit]
[-] man-db.prerm
[edit]
[-] accountsservice.list
[edit]
[-] libncursesw6:amd64.shlibs
[edit]
[-] util-linux.prerm
[edit]
[-] libp11-kit0:amd64.list
[edit]
[-] linux-modules-5.13.0-1029-aws.postrm
[edit]
[-] liblz4-1:amd64.symbols
[edit]
[-] libzstd1:amd64.symbols
[edit]
[-] libk5crypto3:amd64.shlibs
[edit]
[-] gpg-wks-server.list
[edit]
[-] perl-base.list
[edit]
[-] klibc-utils.triggers
[edit]
[-] libss2:amd64.md5sums
[edit]
[-] glib-networking-services.md5sums
[edit]
[-] python3-pkg-resources.prerm
[edit]
[-] gpgv.md5sums
[edit]
[-] libkrb5support0:amd64.triggers
[edit]
[-] libquadmath0:amd64.list
[edit]
[-] language-selector-common.postinst
[edit]
[-] libfastjson4:amd64.md5sums
[edit]
[-] python3-software-properties.md5sums
[edit]
[-] libgudev-1.0-0:amd64.symbols
[edit]
[-] linux-image-5.15.0-1077-aws.postrm
[edit]
[-] libc-dev-bin.list
[edit]
[-] libcap-ng0:amd64.md5sums
[edit]
[-] libpcre3:amd64.list
[edit]
[-] libappstream4:amd64.list
[edit]
[-] base-files.list
[edit]
[-] libhttp-message-perl.md5sums
[edit]
[-] language-selector-common.conffiles
[edit]
[-] apache2.preinst
[edit]
[-] linux-image-5.15.0-1023-aws.postrm
[edit]
[-] libssl1.1:amd64.md5sums
[edit]
[-] intel-microcode.postrm
[edit]
[-] phpmyadmin.md5sums
[edit]
[-] irqbalance.list
[edit]
[-] libproxy1v5:amd64.shlibs
[edit]
[-] php7.4-xml.triggers
[edit]
[-] linux-modules-5.15.0-1047-aws.list
[edit]
[-] php7.4-cli.md5sums
[edit]
[-] libidn2-0:amd64.shlibs
[edit]
[-] libcurl3-gnutls:amd64.md5sums
[edit]
[-] libzip4:amd64.md5sums
[edit]
[-] libapache2-mod-php7.4.prerm
[edit]
[-] dbus.md5sums
[edit]
[-] libkrb5-26-heimdal:amd64.triggers
[edit]
[-] libxmlsec1:amd64.list
[edit]
[-] php7.4-fpm.preinst
[edit]
[-] libpsl5:amd64.md5sums
[edit]
[-] php8.0-xml.md5sums
[edit]
[-] byobu.config
[edit]
[-] patch.md5sums
[edit]
[-] libgmp10:amd64.shlibs
[edit]
[-] libsnappy1v5:amd64.md5sums
[edit]
[-] libgomp1:amd64.shlibs
[edit]
[-] php7.4-cli.postrm
[edit]
[-] linux-modules-5.13.0-1021-aws.postrm
[edit]
[-] python3-zipp.md5sums
[edit]
[-] libaccountsservice0:amd64.shlibs
[edit]
[-] fonts-dejavu-core.md5sums
[edit]
[-] libpam-modules:amd64.md5sums
[edit]
[-] php7.4-opcache.preinst
[edit]
[-] lsb-base.postinst
[edit]
[-] libtss2-esys0.triggers
[edit]
[-] mariadb-server-10.3.config
[edit]
[-] libfuse2:amd64.list
[edit]
[-] libc6:amd64.conffiles
[edit]
[-] libnewt0.52:amd64.list
[edit]
[-] python3-setuptools.prerm
[edit]
[-] openssh-server.config
[edit]
[-] libalgorithm-merge-perl.list
[edit]
[-] policykit-1.postrm
[edit]
[-] dirmngr.preinst
[edit]
[-] libdbd-mysql-perl:amd64.md5sums
[edit]
[-] libffi7:amd64.triggers
[edit]
[-] python3-service-identity.postinst
[edit]
[-] manpages-dev.list
[edit]
[-] cpp-9.list
[edit]
[-] ubuntu-release-upgrader-core.postinst
[edit]
[-] mariadb-server-10.3.postrm
[edit]
[-] libpolkit-gobject-1-0:amd64.md5sums
[edit]
[-] libatomic1:amd64.md5sums
[edit]
[-] dbconfig-common.templates
[edit]
[-] systemd.preinst
[edit]
[-] ssl-cert.postrm
[edit]
[-] libnetfilter-conntrack3:amd64.triggers
[edit]
[-] dmeventd.postinst
[edit]
[-] libxext6:amd64.list
[edit]
[-] php8.0-curl.md5sums
[edit]
[-] libgomp1:amd64.triggers
[edit]
[-] ufw.triggers
[edit]
[-] snapd.postrm
[edit]
[-] os-prober.list
[edit]
[-] login.md5sums
[edit]
[-] python3.8-minimal.postinst
[edit]
[-] libattr1:amd64.list
[edit]
[-] screen.list
[edit]
[-] libffi7:amd64.shlibs
[edit]
[-] libssl-dev:amd64.list
[edit]
[-] dpkg-dev.md5sums
[edit]
[-] libglib2.0-bin.md5sums
[edit]
[-] tmux.postinst
[edit]
[-] libwrap0:amd64.triggers
[edit]
[-] fuse.md5sums
[edit]
[-] libffi7:amd64.symbols
[edit]
[-] liblua5.2-0:amd64.list
[edit]
[-] tcpdump.postinst
[edit]
[-] libtsan0:amd64.triggers
[edit]
[-] linux-image-5.15.0-1015-aws.postrm
[edit]
[-] php7.4-readline.preinst
[edit]
[-] btrfs-progs.postinst
[edit]
[-] libhtml-template-perl.list
[edit]
[-] libgssapi3-heimdal:amd64.symbols
[edit]
[-] socat.list
[edit]
[-] libmspack0:amd64.list
[edit]
[-] byobu.list
[edit]
[-] mawk.list
[edit]
[-] apt-utils.list
[edit]
[-] php-gd.list
[edit]
[-] php7.4-readline.postrm
[edit]
[-] python3-colorama.postinst
[edit]
[-] libparted2:amd64.md5sums
[edit]
[-] libnghttp2-14:amd64.triggers
[edit]
[-] libvorbisfile3:amd64.triggers
[edit]
[-] libtiff5:amd64.triggers
[edit]
[-] libauparse0:amd64.symbols
[edit]
[-] libxau6:amd64.list
[edit]
[-] ca-certificates.triggers
[edit]
[-] libsmbios-c2.md5sums
[edit]
[-] plymouth-theme-ubuntu-text.prerm
[edit]
[-] php-symfony-var-exporter.list
[edit]
[-] apache2-data.list
[edit]
[-] libctf0:amd64.md5sums
[edit]
[-] python3-dbus.postinst
[edit]
[-] base-files.conffiles
[edit]
[-] libxmlsec1-openssl:amd64.shlibs
[edit]
[-] kpartx.postinst
[edit]
[-] g++.postinst
[edit]
[-] php7.4-gd.preinst
[edit]
[-] libgmp10:amd64.list
[edit]
[-] libitm1:amd64.symbols
[edit]
[-] libisc-export1105:amd64.md5sums
[edit]
[-] php-zip.list
[edit]
[-] php-symfony-service-contracts.list
[edit]
[-] libgpgme11:amd64.md5sums
[edit]
[-] libjansson4:amd64.shlibs
[edit]
[-] dbus-user-session.conffiles
[edit]
[-] libfwupdplugin1:amd64.symbols
[edit]
[-] linux-libc-dev:amd64.md5sums
[edit]
[-] php8.0-opcache.triggers
[edit]
[-] ubuntu-release-upgrader-core.md5sums
[edit]
[-] patch.list
[edit]
[-] libc6:amd64.postinst
[edit]
[-] php-mysql.md5sums
[edit]
[-] libauparse0:amd64.md5sums
[edit]
[-] packagekit-tools.list
[edit]
[-] python3-gi.md5sums
[edit]
[-] linux-image-5.15.0-1030-aws.list
[edit]
[-] libfcgi-perl.list
[edit]
[-] php-symfony-filesystem.md5sums
[edit]
[-] ed.md5sums
[edit]
[-] libexpat1:amd64.list
[edit]
[-] python3-pyasn1-modules.md5sums
[edit]
[-] cryptsetup-bin.md5sums
[edit]
[-] python3-entrypoints.md5sums
[edit]
[-] grub-common.prerm
[edit]
[-] libsasl2-modules:amd64.list
[edit]
[-] cloud-initramfs-dyn-netconf.md5sums
[edit]
[-] libnetfilter-conntrack3:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1045-aws.postrm
[edit]
[-] python3-jsonschema.postrm
[edit]
[-] mariadb-client-10.3.postrm
[edit]
[-] python3-serial.md5sums
[edit]
[-] python3-importlib-metadata.md5sums
[edit]
[-] libsqlite3-0:amd64.symbols
[edit]
[-] libk5crypto3:amd64.triggers
[edit]
[-] microcode-initrd.postrm
[edit]
[-] libefivar1:amd64.list
[edit]
[-] kbd.md5sums
[edit]
[-] apache2.prerm
[edit]
[-] mysql-common.preinst
[edit]
[-] mdadm.postrm
[edit]
[-] perl-base.preinst
[edit]
[-] cloud-initramfs-copymods.postinst
[edit]
[-] libpam-cap:amd64.md5sums
[edit]
[-] libgd3:amd64.symbols
[edit]
[-] libcurl4:amd64.md5sums
[edit]
[-] libpython3.8:amd64.symbols
[edit]
[-] python3-oauthlib.md5sums
[edit]
[-] libogg0:amd64.triggers
[edit]
[-] xz-utils.md5sums
[edit]
[-] debconf-i18n.md5sums
[edit]
[-] libtss2-esys0.shlibs
[edit]
[-] libcc1-0:amd64.symbols
[edit]
[-] iproute2.postrm
[edit]
[-] linux-image-5.15.0-1034-aws.list
[edit]
[-] libapt-pkg6.0:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1034-aws.list
[edit]
[-] python3-distupgrade.postinst
[edit]
[-] libgssapi-krb5-2:amd64.postrm
[edit]
[-] libblkid1:amd64.triggers
[edit]
[-] php8.0-mcrypt.preinst
[edit]
[-] cloud-initramfs-dyn-netconf.postinst
[edit]
[-] libjson-c4:amd64.md5sums
[edit]
[-] libacl1:amd64.symbols
[edit]
[-] libc6:amd64.preinst
[edit]
[-] php8.0-mysql.preinst
[edit]
[-] python3-debian.md5sums
[edit]
[-] php8.0-xml.postinst
[edit]
[-] python3-pexpect.md5sums
[edit]
[-] linux-modules-5.15.0-1049-aws.list
[edit]
[-] libuchardet0:amd64.triggers
[edit]
[-] php-pear.postrm
[edit]
[-] liblvm2cmd2.03:amd64.list
[edit]
[-] ssh-import-id.md5sums
[edit]
[-] adduser.conffiles
[edit]
[-] vim-tiny.conffiles
[edit]
[-] libappstream4:amd64.md5sums
[edit]
[-] python3-minimal.postinst
[edit]
[-] javascript-common.list
[edit]
[-] isc-dhcp-common.md5sums
[edit]
[-] passwd.md5sums
[edit]
[-] perl.postinst
[edit]
[-] ed.prerm
[edit]
[-] base-passwd.preinst
[edit]
[-] fontconfig-config.postinst
[edit]
[-] php7.4-bcmath.postrm
[edit]
[-] libbsd0:amd64.shlibs
[edit]
[-] libaudit-common.list
[edit]
[-] php7.4-mysql.prerm
[edit]
[-] python3-six.list
[edit]
[-] auditd.prerm
[edit]
[-] linux-image-5.15.0-1064-aws.list
[edit]
[-] libaudit-common.md5sums
[edit]
[-] libdpkg-perl.list
[edit]
[-] util-linux.preinst
[edit]
[-] unattended-upgrades.list
[edit]
[-] libpam-systemd:amd64.postinst
[edit]
[-] libpam-systemd:amd64.md5sums
[edit]
[-] libxcb1:amd64.shlibs
[edit]
[-] libprocps8:amd64.md5sums
[edit]
[-] squashfs-tools.md5sums
[edit]
[-] procps.list
[edit]
[-] libefiboot1:amd64.triggers
[edit]
[-] hostname.md5sums
[edit]
[-] linux-image-5.15.0-1033-aws.list
[edit]
[-] mysql-common.postrm
[edit]
[-] php8.0-mysql.prerm
[edit]
[-] python3.preinst
[edit]
[-] libcbor0.6:amd64.symbols
[edit]
[-] passwd.postrm
[edit]
[-] python3-yaml.prerm
[edit]
[-] dmeventd.postrm
[edit]
[-] libpcre2-32-0:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1022-aws.list
[edit]
[-] grub-gfxpayload-lists.md5sums
[edit]
[-] linux-image-5.11.0-1020-aws.list
[edit]
[-] libnetplan0:amd64.md5sums
[edit]
[-] python3-dbus.prerm
[edit]
[-] gpgconf.list
[edit]
[-] mime-support.md5sums
[edit]
[-] libgpgme11:amd64.symbols
[edit]
[-] libctf0:amd64.symbols
[edit]
[-] perl-base.postrm
[edit]
[-] initramfs-tools.prerm
[edit]
[-] python3-pyasn1-modules.prerm
[edit]
[-] php7.4-curl.prerm
[edit]
[-] linux-image-5.15.0-1050-aws.list
[edit]
[-] libcgi-pm-perl.md5sums
[edit]
[-] libgdbm-compat4:amd64.md5sums
[edit]
[-] build-essential.md5sums
[edit]
[-] libnftnl11:amd64.symbols
[edit]
[-] libcurl3-gnutls:amd64.shlibs
[edit]
[-] python3-importlib-metadata.postinst
[edit]
[-] libssl1.1:amd64.postinst
[edit]
[-] plymouth.postrm
[edit]
[-] python3-launchpadlib.postinst
[edit]
[-] python3-problem-report.postinst
[edit]
[-] initramfs-tools-core.postinst
[edit]
[-] language-selector-common.preinst
[edit]
[-] php7.4-xml.postrm
[edit]
[-] libapt-pkg6.0:amd64.list
[edit]
[-] linux-image-5.15.0-1041-aws.list
[edit]
[-] bsdmainutils.md5sums
[edit]
[-] python3-hamcrest.postinst
[edit]
[-] python3-colorama.prerm
[edit]
[-] libperl5.30:amd64.shlibs
[edit]
[-] libcrypt1:amd64.md5sums
[edit]
[-] ubuntu-standard.list
[edit]
[-] mime-support.list
[edit]
[-] packagekit.prerm
[edit]
[-] composer.md5sums
[edit]
[-] linux-image-5.15.0-1064-aws.postrm
[edit]
[-] libcryptsetup12:amd64.shlibs
[edit]
[-] multipath-tools.preinst
[edit]
[-] grub2-common.md5sums
[edit]
[-] linux-modules-5.13.0-1021-aws.list
[edit]
[-] python3-systemd.postinst
[edit]
[-] libldap-common.md5sums
[edit]
[-] mysql-common.postinst
[edit]
[-] locales.md5sums
[edit]
[-] libpng16-16:amd64.shlibs
[edit]
[-] libdebconfclient0:amd64.list
[edit]
[-] libfl2:amd64.shlibs
[edit]
[-] libapache2-mod-fcgid.postrm
[edit]
[-] bind9-libs:amd64.md5sums
[edit]
[-] libuv1:amd64.list
[edit]
[-] python3-jsonschema.prerm
[edit]
[-] libgcab-1.0-0:amd64.md5sums
[edit]
[-] isc-dhcp-client.conffiles
[edit]
[-] libinotifytools0:amd64.list
[edit]
[-] iptables.postinst
[edit]
[-] debconf.config
[edit]
[-] javascript-common.postrm
[edit]
[-] libpipeline1:amd64.symbols
[edit]
[-] libstemmer0d:amd64.shlibs
[edit]
[-] libisc-export1105:amd64.shlibs
[edit]
[-] python3-hamcrest.prerm
[edit]
[-] libgssapi3-heimdal:amd64.md5sums
[edit]
[-] libdrm2:amd64.shlibs
[edit]
[-] cpio.postinst
[edit]
[-] python3-lazr.restfulclient.md5sums
[edit]
[-] linux-modules-5.15.0-1048-aws.postrm
[edit]
[-] nano.list
[edit]
[-] libaio1:amd64.list
[edit]
[-] libxcb1:amd64.triggers
[edit]
[-] pkg-config.conffiles
[edit]
[-] open-vm-tools.postrm
[edit]
[-] libext2fs2:amd64.md5sums
[edit]
[-] cryptsetup-initramfs.postrm
[edit]
[-] libperl5.30:amd64.md5sums
[edit]
[-] php-composer-ca-bundle.md5sums
[edit]
[-] htop.md5sums
[edit]
[-] apache2-utils.md5sums
[edit]
[-] linux-image-5.15.0-1080-aws.list
[edit]
[-] linux-image-5.15.0-1073-aws.postrm
[edit]
[-] open-iscsi.prerm
[edit]
[-] libcom-err2:amd64.triggers
[edit]
[-] mariadb-client-10.3.md5sums
[edit]
[-] libpcre2-dev:amd64.list
[edit]
[-] linux-modules-5.11.0-1022-aws.postrm
[edit]
[-] publicsuffix.md5sums
[edit]
[-] libgirepository-1.0-1:amd64.md5sums
[edit]
[-] systemd.list
[edit]
[-] libxml2:amd64.list
[edit]
[-] apport.postinst
[edit]
[-] php7.4-bcmath.prerm
[edit]
[-] php8.0-common.preinst
[edit]
[-] initramfs-tools-core.md5sums
[edit]
[-] libcgi-fast-perl.md5sums
[edit]
[-] libblkid1:amd64.symbols
[edit]
[-] libapache2-mod-php7.4.md5sums
[edit]
[-] libtiff5:amd64.md5sums
[edit]
[-] cpp.postinst
[edit]
[-] libstdc++6:amd64.md5sums
[edit]
[-] lshw.md5sums
[edit]
[-] libasn1-8-heimdal:amd64.list
[edit]
[-] libargon2-1:amd64.md5sums
[edit]
[-] gcc-9.list
[edit]
[-] libc6:amd64.symbols
[edit]
[-] liblsan0:amd64.list
[edit]
[-] perl-base.postinst
[edit]
[-] sbsigntool.md5sums
[edit]
[-] libpcre2-8-0:amd64.md5sums
[edit]
[-] libidn2-0:amd64.symbols
[edit]
[-] linux-modules-5.15.0-1020-aws.list
[edit]
[-] linux-image-5.15.0-1081-aws.list
[edit]
[-] libncursesw6:amd64.triggers
[edit]
[-] liblsan0:amd64.triggers
[edit]
[-] acpid.postinst
[edit]
[-] libbinutils:amd64.list
[edit]
[-] libtdb1:amd64.md5sums
[edit]
[-] cloud-init.postrm
[edit]
[-] php7.4-json.preinst
[edit]
[-] libattr1:amd64.triggers
[edit]
[-] libpython3-stdlib:amd64.md5sums
[edit]
[-] libsystemd0:amd64.list
[edit]
[-] libapache2-mod-php7.4.postinst
[edit]
[-] libpam-modules-bin.list
[edit]
[-] publicsuffix.list
[edit]
[-] linux-image-5.15.0-1036-aws.list
[edit]
[-] autopoint.list
[edit]
[-] libefivar1:amd64.shlibs
[edit]
[-] apache2.md5sums
[edit]
[-] libsgutils2-2.symbols
[edit]
[-] libconfig-inifiles-perl.list
[edit]
[-] dbus.list
[edit]
[-] libpam-runtime.prerm
[edit]
[-] linux-modules-5.15.0-1021-aws.list
[edit]
[-] debconf.md5sums
[edit]
[-] sosreport.prerm
[edit]
[-] python3-zope.interface.list
[edit]
[-] libjson-c4:amd64.triggers
[edit]
[-] ncurses-term.md5sums
[edit]
[-] linux-image-5.13.0-1019-aws.postrm
[edit]
[-] python3-nacl.list
[edit]
[-] libfontconfig1:amd64.triggers
[edit]
[-] python3-markupsafe.prerm
[edit]
[-] linux-image-5.8.0-1042-aws.postrm
[edit]
[-] gpg-agent.md5sums
[edit]
[-] libgcrypt20:amd64.shlibs
[edit]
[-] snapd.preinst
[edit]
[-] console-setup.postrm
[edit]
[-] apport.list
[edit]
[-] sg3-utils.md5sums
[edit]
[-] libasound2:amd64.list
[edit]
[-] rsync.postrm
[edit]
[-] ftp.prerm
[edit]
[-] php7.4-mbstring.triggers
[edit]
[-] php7.4-sqlite3.postrm
[edit]
[-] gpg-agent.postrm
[edit]
[-] rsyslog.conffiles
[edit]
[-] libogg0:amd64.shlibs
[edit]
[-] libssh-4:amd64.symbols
[edit]
[-] cloud-initramfs-dyn-netconf.postrm
[edit]
[-] mssql-tools.changelog
[edit]
[-] iproute2.list
[edit]
[-] libdevmapper1.02.1:amd64.md5sums
[edit]
[-] pkg-config.md5sums
[edit]
[-] libstemmer0d:amd64.triggers
[edit]
[-] python3-apport.list
[edit]
[-] sbsigntool.list
[edit]
[-] linux-image-5.15.0-1028-aws.postrm
[edit]
[-] linux-modules-5.15.0-1053-aws.list
[edit]
[-] libparted2:amd64.triggers
[edit]
[-] php8.0-readline.preinst
[edit]
[-] libsoup2.4-1:amd64.symbols
[edit]
[-] kbd.postinst
[edit]
[-] ubuntu-server.md5sums
[edit]
[-] lsb-base.md5sums
[edit]
[-] gcc.list
[edit]
[-] packagekit.preinst
[edit]
[-] libsemanage1:amd64.triggers
[edit]
[-] libwebp6:amd64.md5sums
[edit]
[-] libcap2-bin.list
[edit]
[-] python3-ptyprocess.prerm
[edit]
[-] libnpth0:amd64.symbols
[edit]
[-] libselinux1:amd64.shlibs
[edit]
[-] python3-pyasn1-modules.postinst
[edit]
[-] libxml2:amd64.shlibs
[edit]
[-] libapache2-mod-php8.0.conffiles
[edit]
[-] libmount1:amd64.md5sums
[edit]
[-] python3-jinja2.postinst
[edit]
[-] base-files.postinst
[edit]
[-] linux-modules-5.11.0-1025-aws.postrm
[edit]
[-] libxmlsec1:amd64.triggers
[edit]
[-] iproute2.md5sums
[edit]
[-] popularity-contest.md5sums
[edit]
[-] libaprutil1:amd64.shlibs
[edit]
[-] python3-distro.list
[edit]
[-] linux-image-5.15.0-1031-aws.list
[edit]
[-] byobu.postinst
[edit]
[-] landscape-common.postinst
[edit]
[-] libfastjson4:amd64.shlibs
[edit]
[-] libldap-common.conffiles
[edit]
[-] net-tools.list
[edit]
[-] php-json-schema.list
[edit]
[-] linux-image-5.15.0-1033-aws.postrm
[edit]
[-] libxslt1.1:amd64.shlibs
[edit]
[-] man-db.triggers
[edit]
[-] base-files.prerm
[edit]
[-] python3-apport.postinst
[edit]
[-] linux-modules-5.15.0-1069-aws.list
[edit]
[-] libselinux1:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1072-aws.list
[edit]
[-] python3-openssl.postinst
[edit]
[-] libzip4:amd64.symbols
[edit]
[-] libssl1.1:amd64.symbols
[edit]
[-] libarchive-zip-perl.list
[edit]
[-] libapt-pkg6.0:amd64.shlibs
[edit]
[-] fwupd.postinst
[edit]
[-] libwind0-heimdal:amd64.md5sums
[edit]
[-] libk5crypto3:amd64.symbols
[edit]
[-] libattr1:amd64.md5sums
[edit]
[-] python3-pymacaroons.postinst
[edit]
[-] apport.preinst
[edit]
[-] php-curl.list
[edit]
[-] libfido2-1:amd64.symbols
[edit]
[-] libext2fs2:amd64.shlibs
[edit]
[-] ec2-instance-connect.postrm
[edit]
[-] libgpg-error0:amd64.symbols
[edit]
[-] apparmor.templates
[edit]
[-] linux-modules-5.15.0-1068-aws.list
[edit]
[-] pkg-config.prerm
[edit]
[-] linux-modules-5.15.0-1066-aws.list
[edit]
[-] libpsl5:amd64.triggers
[edit]
[-] mssql-tools.list
[edit]
[-] cryptsetup-bin.list
[edit]
[-] libgnutls30:amd64.triggers
[edit]
[-] libodbc1:amd64.list
[edit]
[-] libheimbase1-heimdal:amd64.shlibs
[edit]
[-] debianutils.list
[edit]
[-] python3.8.postinst
[edit]
[-] php8.0-readline.list
[edit]
[-] install-info.md5sums
[edit]
[-] ec2-hibinit-agent.conffiles
[edit]
[-] dbconfig-common.md5sums
[edit]
[-] libext2fs2:amd64.symbols
[edit]
[-] python3-importlib-metadata.list
[edit]
[-] systemd-timesyncd.md5sums
[edit]
[-] update-notifier-common.postinst
[edit]
[-] python3-pyasn1.prerm
[edit]
[-] lsb-release.list
[edit]
[-] lvm2.postrm
[edit]
[-] lvm2.preinst
[edit]
[-] libfwupdplugin1:amd64.list
[edit]
[-] python3-jsonpatch.list
[edit]
[-] libtdb1:amd64.list
[edit]
[-] libsepol1:amd64.symbols
[edit]
[-] mdadm.md5sums
[edit]
[-] iptables.md5sums
[edit]
[-] lsof.md5sums
[edit]
[-] linux-modules-5.15.0-1050-aws.postrm
[edit]
[-] libfcgi-perl.md5sums
[edit]
[-] libroken18-heimdal:amd64.symbols
[edit]
[-] libgstreamer1.0-0:amd64.postinst
[edit]
[-] libsasl2-2:amd64.md5sums
[edit]
[-] ubuntu-release-upgrader-core.conffiles
[edit]
[-] libpci3:amd64.list
[edit]
[-] mariadb-common.conffiles
[edit]
[-] libuv1:amd64.triggers
[edit]
[-] findutils.list
[edit]
[-] libgusb2:amd64.md5sums
[edit]
[-] libjson-c4:amd64.shlibs
[edit]
[-] landscape-common.config
[edit]
[-] ssl-cert.list
[edit]
[-] php-common.postinst
[edit]
[-] hdparm.list
[edit]
[-] libfl2:amd64.md5sums
[edit]
[-] libpcre2-16-0:amd64.symbols
[edit]
[-] python3-secretstorage.prerm
[edit]
[-] libtasn1-6:amd64.symbols
[edit]
[-] libprocps8:amd64.shlibs
[edit]
[-] systemd.conffiles
[edit]
[-] python3.8.list
[edit]
[-] libparted2:amd64.list
[edit]
[-] grub-pc.preinst
[edit]
[-] libpcre2-32-0:amd64.symbols
[edit]
[-] libgssapi3-heimdal:amd64.shlibs
[edit]
[-] linux-modules-5.15.0-1035-aws.list
[edit]
[-] libfribidi0:amd64.shlibs
[edit]
[-] libsodium23:amd64.list
[edit]
[-] libgnutls30:amd64.md5sums
[edit]
[-] openssh-sftp-server.list
[edit]
[-] xauth.md5sums
[edit]
[-] python3-distutils.md5sums
[edit]
[-] liberror-perl.list
[edit]
[-] php8.0-dev.list
[edit]
[-] libpopt0:amd64.triggers
[edit]
[-] openssl.postinst
[edit]
[-] python3-distutils.list
[edit]
[-] cron.conffiles
[edit]
[-] linux-modules-5.15.0-1066-aws.postrm
[edit]
[-] cloud-initramfs-copymods.list
[edit]
[-] libassuan0:amd64.list
[edit]
[-] python3-yaml.list
[edit]
[-] libevent-2.1-7:amd64.triggers
[edit]
[-] man-db.postinst
[edit]
[-] console-setup-linux.postinst
[edit]
[-] linux-modules-5.15.0-1037-aws.postrm
[edit]
[-] friendly-recovery.preinst
[edit]
[-] git.conffiles
[edit]
[-] libpolkit-gobject-1-0:amd64.shlibs
[edit]
[-] libsoup2.4-1:amd64.md5sums
[edit]
[-] libnettle7:amd64.shlibs
[edit]
[-] php7.4-fpm.triggers
[edit]
[-] python3-lazr.uri.prerm
[edit]
[-] libmcrypt4.md5sums
[edit]
[-] libxpm4:amd64.md5sums
[edit]
[-] libpcre2-8-0:amd64.shlibs
[edit]
[-] fwupd.preinst
[edit]
[-] libldap-2.4-2:amd64.md5sums
[edit]
[-] php7.4-curl.postrm
[edit]
[-] xkb-data.list
[edit]
[-] python3-jwt.postinst
[edit]
[-] libkrb5-26-heimdal:amd64.md5sums
[edit]
[-] php-json.md5sums
[edit]
[-] ca-certificates.postinst
[edit]
[-] linux-image-5.11.0-1016-aws.postrm
[edit]
[-] libntfs-3g883.list
[edit]
[-] plymouth.postinst
[edit]
[-] libpython3.8:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1038-aws.postrm
[edit]
[-] libpolkit-agent-1-0:amd64.md5sums
[edit]
[-] libjansson4:amd64.list
[edit]
[-] friendly-recovery.prerm
[edit]
[-] linux-image-5.13.0-1025-aws.postrm
[edit]
[-] linux-modules-5.13.0-1017-aws.list
[edit]
[-] pinentry-curses.md5sums
[edit]
[-] linux-image-5.11.0-1025-aws.postrm
[edit]
[-] openssh-client.conffiles
[edit]
[-] python3-cffi-backend.md5sums
[edit]
[-] libgpm2:amd64.list
[edit]
[-] libpython3.8-minimal:amd64.postinst
[edit]
[-] libip6tc2:amd64.triggers
[edit]
[-] dconf-service.list
[edit]
[-] libpcap0.8:amd64.shlibs
[edit]
[-] update-notifier-common.md5sums
[edit]
[-] linux-image-5.13.0-1028-aws.list
[edit]
[-] linux-image-5.15.0-1072-aws.list
[edit]
[-] php8.0-curl.preinst
[edit]
[-] libksba8:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1043-aws.list
[edit]
[-] iso-codes.list
[edit]
[-] dosfstools.list
[edit]
[-] netplan.io.postinst
[edit]
[-] libatm1:amd64.md5sums
[edit]
[-] libefiboot1:amd64.shlibs
[edit]
[-] libfribidi0:amd64.md5sums
[edit]
[-] git.md5sums
[edit]
[-] libasn1-8-heimdal:amd64.symbols
[edit]
[-] libdbi-perl:amd64.md5sums
[edit]
[-] php-pear.md5sums
[edit]
[-] libgudev-1.0-0:amd64.list
[edit]
[-] libfl2:amd64.list
[edit]
[-] libmaxminddb0:amd64.triggers
[edit]
[-] libmpdec2:amd64.triggers
[edit]
[-] fakeroot.md5sums
[edit]
[-] libp11-kit0:amd64.symbols
[edit]
[-] tzdata.list
[edit]
[-] linux-modules-5.15.0-1056-aws.list
[edit]
[-] linux-modules-5.11.0-1025-aws.list
[edit]
[-] automake.postinst
[edit]
[-] gir1.2-glib-2.0:amd64.md5sums
[edit]
[-] python-apt-common.md5sums
[edit]
[-] libssh-4:amd64.list
[edit]
[-] libfakeroot:amd64.shlibs
[edit]
[-] run-one.list
[edit]
[-] ubuntu-advantage-tools.prerm
[edit]
[-] intel-microcode.conffiles
[edit]
[-] binutils.md5sums
[edit]
[-] linux-modules-5.15.0-1037-aws.list
[edit]
[-] libinotifytools0:amd64.symbols
[edit]
[-] linux-modules-5.15.0-1040-aws.postrm
[edit]
[-] libtext-wrapi18n-perl.list
[edit]
[-] libedit2:amd64.triggers
[edit]
[-] fonts-dejavu-core.conffiles
[edit]
[-] apparmor.md5sums
[edit]
[-] libcbor0.6:amd64.triggers
[edit]
[-] python3-lib2to3.list
[edit]
[-] libfile-stripnondeterminism-perl.md5sums
[edit]
[-] libstdc++6:amd64.triggers
[edit]
[-] apparmor.prerm
[edit]
[-] xdg-user-dirs.preinst
[edit]
[-] libmaxminddb0:amd64.shlibs
[edit]
[-] info.list
[edit]
[-] libglib2.0-0:amd64.postrm
[edit]
[-] libxtables12:amd64.symbols
[edit]
[-] python3-jinja2.list
[edit]
[-] bolt.preinst
[edit]
[-] libpython3.8:amd64.list
[edit]
[-] libc-bin.list
[edit]
[-] php7.4-common.triggers
[edit]
[-] libglib2.0-data.list
[edit]
[-] libbrotli1:amd64.shlibs
[edit]
[-] mariadb-server.md5sums
[edit]
[-] vim-common.postrm
[edit]
[-] libdbi-perl:amd64.list
[edit]
[-] curl.md5sums
[edit]
[-] dh-strip-nondeterminism.list
[edit]
[-] libutempter0:amd64.symbols
[edit]
[-] libunistring2:amd64.list
[edit]
[-] iptables.prerm
[edit]
[-] linux-image-5.13.0-1019-aws.list
[edit]
[-] linux-headers-5.15.0-1084-aws.md5sums
[edit]
[-] adduser.postinst
[edit]
[-] linux-modules-5.15.0-1057-aws.postrm
[edit]
[-] tmux.list
[edit]
[-] linux-modules-5.15.0-1050-aws.list
[edit]
[-] linux-image-5.15.0-1084-aws.postrm
[edit]
[-] libpcap0.8:amd64.list
[edit]
[-] linux-modules-5.15.0-1031-aws.postrm
[edit]
[-] libpcre2-posix2:amd64.list
[edit]
[-] info.postinst
[edit]
[-] php7.4-xml.md5sums
[edit]
[-] locales.config
[edit]
[-] libcrypt1:amd64.symbols
[edit]
[-] libgomp1:amd64.symbols
[edit]
[-] php7.4-curl.md5sums
[edit]
[-] e2fsprogs.postinst
[edit]
[-] libexpat1:amd64.symbols
[edit]
[-] python3-debconf.postinst
[edit]
[-] libaccountsservice0:amd64.symbols
[edit]
[-] libsmartcols1:amd64.list
[edit]
[-] libfribidi0:amd64.triggers
[edit]
[-] libfido2-1:amd64.shlibs
[edit]
[-] libwind0-heimdal:amd64.triggers
[edit]
[-] mariadb-common.postinst
[edit]
[-] libncurses6:amd64.list
[edit]
[-] linux-modules-5.15.0-1020-aws.postrm
[edit]
[-] python3-jsonschema.postinst
[edit]
[-] linux-image-5.15.0-1036-aws.postrm
[edit]
[-] sg3-utils-udev.postinst
[edit]
[-] python3-incremental.postinst
[edit]
[-] php8.0-mbstring.postrm
[edit]
[-] libssl1.1:amd64.triggers
[edit]
[-] libxmlb1:amd64.symbols
[edit]
[-] perl-modules-5.30.list
[edit]
[-] php7.4-xml.list
[edit]
[-] libasan5:amd64.list
[edit]
[-] login.postinst
[edit]
[-] update-notifier-common.postrm
[edit]
[-] python3-minimal.prerm
[edit]
[-] python3-lazr.restfulclient.postinst
[edit]
[-] ubuntu-advantage-tools.templates
[edit]
[-] libjs-underscore.md5sums
[edit]
[-] ca-certificates.config
[edit]
[-] bolt.list
[edit]
[-] libgcc-s1:amd64.list
[edit]
[-] libgssapi3-heimdal:amd64.list
[edit]
[-] pollinate.md5sums
[edit]
[-] pollinate.preinst
[edit]
[-] linux-modules-5.15.0-1043-aws.postrm
[edit]
[-] libdns-export1109.list
[edit]
[-] linux-modules-5.15.0-1047-aws.postrm
[edit]
[-] linux-image-5.15.0-1084-aws.list
[edit]
[-] libjs-openlayers.md5sums
[edit]
[-] libpackagekit-glib2-18:amd64.shlibs
[edit]
[-] libgcab-1.0-0:amd64.symbols
[edit]
[-] libnewt0.52:amd64.prerm
[edit]
[-] psmisc.postinst
[edit]
[-] python3.8-minimal.list
[edit]
[-] wget.list
[edit]
[-] libpam-modules:amd64.templates
[edit]
[-] linux-headers-5.15.0-1081-aws.list
[edit]
[-] libsodium23:amd64.symbols
[edit]
[-] apache2-data.md5sums
[edit]
[-] libevent-2.1-7:amd64.shlibs
[edit]
[-] libntfs-3g883.shlibs
[edit]
[-] libgcc-s1:amd64.md5sums
[edit]
[-] cryptsetup-run.md5sums
[edit]
[-] openssl.conffiles
[edit]
[-] cron.md5sums
[edit]
[-] libmount1:amd64.triggers
[edit]
[-] plymouth-theme-ubuntu-text.list
[edit]
[-] libheimntlm0-heimdal:amd64.md5sums
[edit]
[-] php8.0-zip.postinst
[edit]
[-] linux-modules-5.11.0-1023-aws.postrm
[edit]
[-] libpam0g:amd64.md5sums
[edit]
[-] cryptsetup-initramfs.preinst
[edit]
[-] whiptail.md5sums
[edit]
[-] glib-networking-services.list
[edit]
[-] apparmor.preinst
[edit]
[-] zlib1g:amd64.symbols
[edit]
[-] unattended-upgrades.config
[edit]
[-] udev.triggers
[edit]
[-] dh-strip-nondeterminism.md5sums
[edit]
[-] libx11-data.list
[edit]
[-] libmspack0:amd64.shlibs
[edit]
[-] libss2:amd64.shlibs
[edit]
[-] gcc.prerm
[edit]
[-] adduser.config
[edit]
[-] vim-tiny.postrm
[edit]
[-] libdevmapper1.02.1:amd64.list
[edit]
[-] less.preinst
[edit]
[-] hibagent.list
[edit]
[-] python3-twisted.prerm
[edit]
[-] mssql-tools.postinst
[edit]
[-] isc-dhcp-common.list
[edit]
[-] libmagic1:amd64.triggers
[edit]
[-] libjson-glib-1.0-common.md5sums
[edit]
[-] libcap2:amd64.list
[edit]
[-] php7.4-mbstring.prerm
[edit]
[-] linux-image-5.15.0-1020-aws.list
[edit]
[-] liblwp-mediatypes-perl.md5sums
[edit]
[-] console-setup-linux.conffiles
[edit]
[-] php8.0-zip.preinst
[edit]
[-] libvorbis0a:amd64.list
[edit]
[-] libgudev-1.0-0:amd64.md5sums
[edit]
[-] libstdc++6:amd64.shlibs
[edit]
[-] grub-pc.postrm
[edit]
[-] linux-modules-5.15.0-1065-aws.list
[edit]
[-] gcc-10-base:amd64.list
[edit]
[-] libargon2-1:amd64.shlibs
[edit]
[-] libattr1:amd64.conffiles
[edit]
[-] dirmngr.postrm
[edit]
[-] libwrap0:amd64.postinst
[edit]
[-] libpipeline1:amd64.list
[edit]
[-] php-composer-spdx-licenses.list
[edit]
[-] vim-tiny.prerm
[edit]
[-] linux-image-5.4.0-1045-aws.postrm
[edit]
[-] libdb5.3:amd64.list
[edit]
[-] libicu66:amd64.list
[edit]
[-] networkd-dispatcher.postinst
[edit]
[-] fwupd.list
[edit]
[-] libkrb5support0:amd64.list
[edit]
[-] cloud-init.prerm
[edit]
[-] python3-update-manager.prerm
[edit]
[-] libx11-6:amd64.shlibs
[edit]
[-] tar.postinst
[edit]
[-] linux-image-5.15.0-1045-aws.list
[edit]
[-] lshw.list
[edit]
[-] linux-image-5.15.0-1031-aws.postrm
[edit]
[-] byobu.md5sums
[edit]
[-] libpam-systemd:amd64.prerm
[edit]
[-] php7.4-cli.list
[edit]
[-] xfsprogs.md5sums
[edit]
[-] libfwupd2:amd64.shlibs
[edit]
[-] php8.0-gd.postinst
[edit]
[-] friendly-recovery.list
[edit]
[-] libaio1:amd64.triggers
[edit]
[-] libntfs-3g883.md5sums
[edit]
[-] bash-completion.list
[edit]
[-] snapd.prerm
[edit]
[-] sosreport.md5sums
[edit]
[-] galera-3.list
[edit]
[-] libreadline8:amd64.symbols
[edit]
[-] php8.0-opcache.preinst
[edit]
[-] libncurses6:amd64.symbols
[edit]
[-] libapache2-mod-php8.0.postinst
[edit]
[-] bind9-libs:amd64.shlibs
[edit]
[-] liblua5.2-0:amd64.shlibs
[edit]
[-] php-pear.prerm
[edit]
[-] openssh-client.md5sums
[edit]
[-] python3-configobj.list
[edit]
[-] php7.4-common.postinst
[edit]
[-] os-prober.md5sums
[edit]
[-] apt.postrm
[edit]
[-] python3.8-minimal.md5sums
[edit]
[-] libaudit1:amd64.shlibs
[edit]
[-] bc.postinst
[edit]
[-] libstdc++-9-dev:amd64.md5sums
[edit]
[-] kbd.postrm
[edit]
[-] libksba8:amd64.md5sums
[edit]
[-] gpg-wks-client.list
[edit]
[-] xxd.list
[edit]
[-] linux-image-5.13.0-1022-aws.list
[edit]
[-] libgmp10:amd64.symbols
[edit]
[-] gpg-agent.list
[edit]
[-] irqbalance.md5sums
[edit]
[-] libblkid1:amd64.shlibs
[edit]
[-] php7.4-opcache.triggers
[edit]
[-] logrotate.md5sums
[edit]
[-] mysql-common.md5sums
[edit]
[-] php8.0-readline.postinst
[edit]
[-] linux-modules-5.15.0-1061-aws.postrm
[edit]
[-] liblua5.2-0:amd64.triggers
[edit]
[-] libldap-2.4-2:amd64.triggers
[edit]
[-] grub-common.postinst
[edit]
[-] libasan5:amd64.shlibs
[edit]
[-] sound-theme-freedesktop.list
[edit]
[-] libtdb1:amd64.symbols
[edit]
[-] python3-debian.list
[edit]
[-] liburcu6:amd64.symbols
[edit]
[-] libgcc-s1:amd64.triggers
[edit]
[-] udev.md5sums
[edit]
[-] btrfs-progs.triggers
[edit]
[-] accountsservice.md5sums
[edit]
[-] accountsservice.prerm
[edit]
[-] libfontconfig1:amd64.symbols
[edit]
[-] python3-idna.md5sums
[edit]
[-] libuuid1:amd64.symbols
[edit]
[-] javascript-common.conffiles
[edit]
[-] php8.0-curl.postrm
[edit]
[-] systemd-timesyncd.postrm
[edit]
[-] apt.preinst
[edit]
[-] python3-pyrsistent:amd64.md5sums
[edit]
[-] libpcre2-8-0:amd64.list
[edit]
[-] libpam-runtime.postrm
[edit]
[-] software-properties-common.postinst
[edit]
[-] libcanberra0:amd64.md5sums
[edit]
[-] libstdc++6:amd64.list
[edit]
[-] libpci3:amd64.md5sums
[edit]
[-] libhx509-5-heimdal:amd64.triggers
[edit]
[-] php7.4-bz2.preinst
[edit]
[-] libjbig0:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1055-aws.postrm
[edit]
[-] systemd-sysv.postinst
[edit]
[-] python3-pexpect.list
[edit]
[-] initramfs-tools-core.list
[edit]
[-] binutils-x86-64-linux-gnu.list
[edit]
[-] libfakeroot:amd64.triggers
[edit]
[-] locales.conffiles
[edit]
[-] bash-completion.conffiles
[edit]
[-] language-selector-common.prerm
[edit]
[-] linux-modules-5.15.0-1048-aws.list
[edit]
[-] python3-cryptography.prerm
[edit]
[-] php7.4-json.list
[edit]
[-] php8.0-mcrypt.list
[edit]
[-] ubuntu-advantage-tools.conffiles
[edit]
[-] dpkg.md5sums
[edit]
[-] cloud-init.md5sums
[edit]
[-] python3-pymacaroons.md5sums
[edit]
[-] initramfs-tools.postrm
[edit]
[-] php7.4-readline.list
[edit]
[-] readline-common.postrm
[edit]
[-] python3-openssl.list
[edit]
[-] libc6:amd64.shlibs
[edit]
[-] php8.0-gd.list
[edit]
[-] krb5-locales.list
[edit]
[-] libip6tc2:amd64.list
[edit]
[-] python3-gdbm:amd64.md5sums
[edit]
[-] libreadline8:amd64.list
[edit]
[-] libsqlite3-0:amd64.list
[edit]
[-] dmeventd.prerm
[edit]
[-] msodbcsql17.list
[edit]
[-] libgusb2:amd64.triggers
[edit]
[-] unixodbc-dev.md5sums
[edit]
[-] libltdl7:amd64.list
[edit]
[-] linux-image-5.11.0-1022-aws.postrm
[edit]
[-] shared-mime-info.md5sums
[edit]
[-] mssql-tools.md5sums
[edit]
[-] linux-modules-5.15.0-1015-aws.postrm
[edit]
[-] python3-entrypoints.prerm
[edit]
[-] php7.4-json.md5sums
[edit]
[-] bash.prerm
[edit]
[-] irqbalance.conffiles
[edit]
[-] pollinate.postrm
[edit]
[-] linux-headers-aws.list
[edit]
[-] python3-pyasn1.md5sums
[edit]
[-] libblkid1:amd64.md5sums
[edit]
[-] perl.postrm
[edit]
[-] dbus.prerm
[edit]
[-] dmeventd.triggers
[edit]
[-] python3.prerm
[edit]
[-] libxpm4:amd64.list
[edit]
[-] libgpg-error0:amd64.md5sums
[edit]
[-] libdrm-common.list
[edit]
[-] lsb-base.prerm
[edit]
[-] python3-entrypoints.list
[edit]
[-] libctf-nobfd0:amd64.symbols
[edit]
[-] libmpdec2:amd64.md5sums
[edit]
[-] grub-gfxpayload-lists.postinst
[edit]
[-] php7.4.md5sums
[edit]
[-] python3-more-itertools.md5sums
[edit]
[-] php8.0-common.postinst
[edit]
[-] php-dev.list
[edit]
[-] python3-constantly.md5sums
[edit]
[-] grub-gfxpayload-lists.list
[edit]
[-] libapache2-mod-php8.0.md5sums
[edit]
[-] odbcinst.conffiles
[edit]
[-] libgcc-s1:amd64.symbols
[edit]
[-] liblvm2cmd2.03:amd64.triggers
[edit]
[-] ftp.postinst
[edit]
[-] fakeroot.list
[edit]
[-] linux-image-5.15.0-1049-aws.list
[edit]
[-] xauth.list
[edit]
[-] liblzma5:amd64.list
[edit]
[-] php-google-recaptcha.md5sums
[edit]
[-] python3-update-manager.postinst
[edit]
[-] libnss-systemd:amd64.triggers
[edit]
[-] linux-image-5.4.0-1045-aws.triggers
[edit]
[-] gcc-9-base:amd64.list
[edit]
[-] python3-urllib3.md5sums
[edit]
[-] rsync.list
[edit]
[-] libfuse2:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1030-aws.postrm
[edit]
[-] multipath-tools.shlibs
[edit]
[-] linux-image-5.15.0-1057-aws.postrm
[edit]
[-] login.conffiles
[edit]
[-] auditd.md5sums
[edit]
[-] hibagent.md5sums
[edit]
[-] libgssapi3-heimdal:amd64.triggers
[edit]
[-] dbconfig-common.list
[edit]
[-] libterm-readkey-perl.list
[edit]
[-] libwebp6:amd64.symbols
[edit]
[-] libapache2-mod-php7.4.triggers
[edit]
[-] powermgmt-base.list
[edit]
[-] libarchive-cpio-perl.md5sums
[edit]
[-] console-setup-linux.list
[edit]
[-] console-setup-linux.postrm
[edit]
[-] auditd.postrm
[edit]
[-] libsemanage1:amd64.shlibs
[edit]
[-] kmod.list
[edit]
[-] plymouth.md5sums
[edit]
[-] apache2.conffiles
[edit]
[-] libstemmer0d:amd64.symbols
[edit]
[-] kbd.preinst
[edit]
[-] python3-six.postinst
[edit]
[-] libpci3:amd64.symbols
[edit]
[-] libedit2:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1040-aws.list
[edit]
[-] bash.postinst
[edit]
[-] libapache2-mod-php7.4.conffiles
[edit]
[-] libargon2-1:amd64.list
[edit]
[-] linux-headers-5.15.0-1081-aws.md5sums
[edit]
[-] isc-dhcp-client.postrm
[edit]
[-] initramfs-tools.list
[edit]
[-] libdevmapper1.02.1:amd64.shlibs
[edit]
[-] libntfs-3g883.triggers
[edit]
[-] usbutils.md5sums
[edit]
[-] linux-aws-5.15-headers-5.15.0-1084.list
[edit]
[-] bzip2.md5sums
[edit]
[-] console-setup.config
[edit]
[-] linux-modules-5.15.0-1041-aws.list
[edit]
[-] python3-jsonpatch.postinst
[edit]
[-] btrfs-progs.md5sums
[edit]
[-] python3-jsonschema.list
[edit]
[-] man-db.preinst
[edit]
[-] libkrb5support0:amd64.shlibs
[edit]
[-] gpg.list
[edit]
[-] python3-pkg-resources.md5sums
[edit]
[-] php7.4-xml.preinst
[edit]
[-] git.prerm
[edit]
[-] libc6:amd64.postrm
[edit]
[-] php7.4-cli.postinst
[edit]
[-] grub-pc.list
[edit]
[-] php7.4-gd.postinst
[edit]
[-] glib-networking-common.list
[edit]
[-] intltool-debian.list
[edit]
[-] mime-support.postinst
[edit]
[-] bind9-libs:amd64.list
[edit]
[-] openssh-client.preinst
[edit]
[-] libssl-dev:amd64.md5sums
[edit]
[-] dpkg.postrm
[edit]
[-] libbsd0:amd64.symbols
[edit]
[-] telnet.md5sums
[edit]
[-] php8.0-xml.list
[edit]
[-] python3-lazr.uri.list
[edit]
[-] landscape-common.templates
[edit]
[-] popularity-contest.preinst
[edit]
[-] policykit-1.list
[edit]
[-] libutempter0:amd64.shlibs
[edit]
[-] snapd.list
[edit]
[-] libhogweed5:amd64.md5sums
[edit]
[-] php7.4-zip.list
[edit]
[-] libisl22:amd64.md5sums
[edit]
[-] libkmod2:amd64.shlibs
[edit]
[-] libgcab-1.0-0:amd64.shlibs
[edit]
[-] libldap-2.4-2:amd64.list
[edit]
[-] linux-headers-5.15.0-1084-aws.postinst
[edit]
[-] libsmartcols1:amd64.symbols
[edit]
[-] dbus.postrm
[edit]
[-] apt-utils.md5sums
[edit]
[-] libfwupdplugin1:amd64.triggers
[edit]
[-] php8.0-mbstring.prerm
[edit]
[-] libreadline5:amd64.shlibs
[edit]
[-] libonig5:amd64.md5sums
[edit]
[-] ubuntu-minimal.list
[edit]
[-] base-files.preinst
[edit]
[-] linux-modules-5.4.0-1045-aws.list
[edit]
[-] packagekit.postinst
[edit]
[-] libmnl0:amd64.list
[edit]
[-] linux-image-5.13.0-1014-aws.postrm
[edit]
[-] php8.0-common.prerm
[edit]
[-] amd64-microcode.conffiles
[edit]
[-] libext2fs2:amd64.triggers
[edit]
[-] libquadmath0:amd64.md5sums
[edit]
[-] pci.ids.list
[edit]
[-] ec2-instance-connect.prerm
[edit]
[-] libapache2-mod-php8.0.postrm
[edit]
[-] libc-bin.postinst
[edit]
[-] php-common.preinst
[edit]
[-] nano.md5sums
[edit]
[-] libunistring2:amd64.symbols
[edit]
[-] libefiboot1:amd64.list
[edit]
[-] uuid-runtime.postinst
[edit]
[-] linux-image-5.8.0-1041-aws.list
[edit]
[-] libubsan1:amd64.triggers
[edit]
[-] liblzma5:amd64.md5sums
[edit]
[-] libisns0:amd64.shlibs
[edit]
[-] libxmuu1:amd64.list
[edit]
[-] libbsd0:amd64.triggers
[edit]
[-] overlayroot.conffiles
[edit]
[-] libcroco3:amd64.triggers
[edit]
[-] hibagent.conffiles
[edit]
[-] xfsprogs.shlibs
[edit]
[-] php-zip.md5sums
[edit]
[-] linux-modules-5.15.0-1023-aws.postrm
[edit]
[-] linux-modules-5.13.0-1014-aws.list
[edit]
[-] python3-automat.list
[edit]
[-] python3-distro-info.list
[edit]
[-] libhogweed5:amd64.list
[edit]
[-] libmpdec2:amd64.list
[edit]
[-] linux-image-5.11.0-1025-aws.list
[edit]
[-] libgudev-1.0-0:amd64.triggers
[edit]
[-] openssl.list
[edit]
[-] libgusb2:amd64.shlibs
[edit]
[-] sed.md5sums
[edit]
[-] rsync.conffiles
[edit]
[-] libidn2-0:amd64.md5sums
[edit]
[-] lsb-release.postrm
[edit]
[-] linux-image-5.4.0-1045-aws.list
[edit]
[-] grub-pc.prerm
[edit]
[-] libgomp1:amd64.md5sums
[edit]
[-] g++.prerm
[edit]
[-] linux-image-5.15.0-1065-aws.list
[edit]
[-] phpmyadmin.templates
[edit]
[-] bcache-tools.list
[edit]
[-] libsys-hostname-long-perl.md5sums
[edit]
[-] libicu66:amd64.md5sums
[edit]
[-] libx11-6:amd64.triggers
[edit]
[-] linux-image-5.13.0-1029-aws.list
[edit]
[-] libcrypt1:amd64.list
[edit]
[-] uuid-runtime.prerm
[edit]
[-] libltdl7:amd64.md5sums
[edit]
[-] cpp-9.md5sums
[edit]
[-] libsasl2-modules:amd64.conffiles
[edit]
[-] python3-requests-unixsocket.list
[edit]
[-] python3-six.prerm
[edit]
[-] libmpc3:amd64.shlibs
[edit]
[-] multipath-tools.prerm
[edit]
[-] php-psr-log.list
[edit]
[-] linux-modules-5.15.0-1019-aws.postrm
[edit]
[-] motd-news-config.conffiles
[edit]
[-] libgpgme11:amd64.triggers
[edit]
[-] linux-image-5.15.0-1040-aws.list
[edit]
[-] vim-common.preinst
[edit]
[-] libgnutls30:amd64.list
[edit]
[-] udev.list
[edit]
[-] libfakeroot:amd64.list
[edit]
[-] tzdata.postinst
[edit]
[-] popularity-contest.config
[edit]
[-] libapr1:amd64.list
[edit]
[-] msodbcsql17.config
[edit]
[-] linux-image-5.4.0-1045-aws.md5sums
[edit]
[-] net-tools.md5sums
[edit]
[-] python3-setuptools.postinst
[edit]
[-] libsodium23:amd64.md5sums
[edit]
[-] php-composer-xdebug-handler.list
[edit]
[-] php7.4-intl.triggers
[edit]
[-] liblzo2-2:amd64.shlibs
[edit]
[-] mdadm.list
[edit]
[-] libeatmydata1:amd64.shlibs
[edit]
[-] php-symfony-cache-contracts.list
[edit]
[-] libubsan1:amd64.shlibs
[edit]
[-] php-gd.md5sums
[edit]
[-] libgdbm6:amd64.symbols
[edit]
[-] libpipeline1:amd64.md5sums
[edit]
[-] xfsprogs.postinst
[edit]
[-] overlayroot.list
[edit]
[-] lvm2.conffiles
[edit]
[-] libxml2:amd64.triggers
[edit]
[-] cloud-init.postinst
[edit]
[-] libsnappy1v5:amd64.triggers
[edit]
[-] libext2fs2:amd64.list
[edit]
[-] libtinfo6:amd64.md5sums
[edit]
[-] libmagic1:amd64.symbols
[edit]
[-] libnpth0:amd64.triggers
[edit]
[-] zlib1g:amd64.shlibs
[edit]
[-] libisns0:amd64.md5sums
[edit]
[-] icc-profiles-free.list
[edit]
[-] apport.md5sums
[edit]
[-] libsodium23:amd64.shlibs
[edit]
[-] packagekit.list
[edit]
[-] libfido2-1:amd64.md5sums
[edit]
[-] libx11-data.md5sums
[edit]
[-] distro-info-data.list
[edit]
[-] libfwupdplugin1:amd64.shlibs
[edit]
[-] libpam-cap:amd64.list
[edit]
[-] bind9-host.md5sums
[edit]
[-] less.list
[edit]
[-] libssl1.1:amd64.list
[edit]
[-] keyboard-configuration.config
[edit]
[-] update-notifier-common.preinst
[edit]
[-] libcanberra0:amd64.shlibs
[edit]
[-] multipath-tools.triggers
[edit]
[-] linux-modules-5.15.0-1044-aws.postrm
[edit]
[-] libgd3:amd64.triggers
[edit]
[-] ntfs-3g.triggers
[edit]
[-] python3-apport.prerm
[edit]
[-] odbcinst1debian2:amd64.postrm
[edit]
[-] libsemanage-common.conffiles
[edit]
[-] python3-software-properties.prerm
[edit]
[-] linux-image-5.15.0-1048-aws.postrm
[edit]
[-] python3-problem-report.list
[edit]
[-] libpython3.8-stdlib:amd64.prerm
[edit]
[-] phpmyadmin.prerm
[edit]
[-] python3.8.prerm
[edit]
[-] linux-modules-5.11.0-1022-aws.list
[edit]
[-] javascript-common.preinst
[edit]
[-] hdparm.md5sums
[edit]
[-] console-setup.list
[edit]
[-] tmux.postrm
[edit]
[-] open-iscsi.conffiles
[edit]
[-] motd-news-config.md5sums
[edit]
[-] libparted2:amd64.shlibs
[edit]
[-] libnfnetlink0:amd64.shlibs
[edit]
[-] grub2-common.conffiles
[edit]
[-] libgd3:amd64.list
[edit]
[-] python3-idna.prerm
[edit]
[-] libfuse2:amd64.shlibs
[edit]
[-] dmeventd.list
[edit]
[-] libsasl2-modules-db:amd64.list
[edit]
[-] libhtml-parser-perl.md5sums
[edit]
[-] libjpeg-turbo8:amd64.shlibs
[edit]
[-] gpgsm.md5sums
[edit]
[-] linux-image-5.13.0-1031-aws.list
[edit]
[-] gnupg.list
[edit]
[-] linux-image-5.15.0-1061-aws.postrm
[edit]
[-] fwupd.md5sums
[edit]
[-] policykit-1.md5sums
[edit]
[-] dash.postrm
[edit]
[-] ca-certificates.templates
[edit]
[-] initramfs-tools.triggers
[edit]
[-] libpcre2-posix2:amd64.md5sums
[edit]
[-] openssh-server.prerm
[edit]
[-] vim-tiny.preinst
[edit]
[-] libxcb1:amd64.md5sums
[edit]
[-] php7.4-sqlite3.prerm
[edit]
[-] python3-apt.md5sums
[edit]
[-] libisns0:amd64.list
[edit]
[-] binutils-x86-64-linux-gnu.md5sums
[edit]
[-] linux-headers-5.4.0-1045-aws.postinst
[edit]
[-] python3-apport.md5sums
[edit]
[-] libhogweed5:amd64.symbols
[edit]
[-] linux-modules-5.15.0-1068-aws.postrm
[edit]
[-] vim.postrm
[edit]
[-] libjs-openlayers.list
[edit]
[-] libzstd1:amd64.shlibs
[edit]
[-] python3-newt:amd64.list
[edit]
[-] php-mcrypt.md5sums
[edit]
[-] linux-image-5.15.0-1082-aws.list
[edit]
[-] lsb-base.list
[edit]
[-] dbus.conffiles
[edit]
[-] python3-gi.list
[edit]
[-] python3-service-identity.list
[edit]
[-] powermgmt-base.md5sums
[edit]
[-] python3-distro-info.prerm
[edit]
[-] libpam0g:amd64.postrm
[edit]
[-] libglib2.0-0:amd64.triggers
[edit]
[-] php-symfony-service-contracts.md5sums
[edit]
[-] libltdl7:amd64.shlibs
[edit]
[-] libgusb2:amd64.symbols
[edit]
[-] linux-modules-5.15.0-1064-aws.list
[edit]
[-] grub-common.postrm
[edit]
[-] linux-image-5.15.0-1063-aws.postrm
[edit]
[-] ssh-import-id.list
[edit]
[-] locales.list
[edit]
[-] libstdc++6:amd64.symbols
[edit]
[-] mtr-tiny.md5sums
[edit]
[-] libeatmydata1:amd64.list
[edit]
[-] libapache2-mod-php.list
[edit]
[-] bsdmainutils.conffiles
[edit]
[-] bc.md5sums
[edit]
[-] linux-image-5.15.0-1019-aws.postrm
[edit]
[-] sg3-utils-udev.md5sums
[edit]
[-] ftp.list
[edit]
[-] python3-software-properties.list
[edit]
[-] rsyslog.postrm
[edit]
[-] libedit2:amd64.shlibs
[edit]
[-] libtimedate-perl.md5sums
[edit]
[-] uuid-runtime.list
[edit]
[-] libpcre3:amd64.shlibs
[edit]
[-] liblzma5:amd64.symbols
[edit]
[-] libjpeg8:amd64.list
[edit]
[-] libnettle7:amd64.symbols
[edit]
[-] php8.0-cli.triggers
[edit]
[-] strace.md5sums
[edit]
[-] plymouth.conffiles
[edit]
[-] libctf0:amd64.triggers
[edit]
[-] language-selector-common.md5sums
[edit]
[-] libglib2.0-bin.list
[edit]
[-] linux-modules-5.15.0-1052-aws.postrm
[edit]
[-] open-vm-tools.prerm
[edit]
[-] linux-modules-5.15.0-1057-aws.list
[edit]
[-] linux-modules-5.15.0-1052-aws.list
[edit]
[-] iproute2.templates
[edit]
[-] python3-pkg-resources.postinst
[edit]
[-] libxml2:amd64.md5sums
[edit]
[-] linux-image-5.11.0-1028-aws.list
[edit]
[-] libk5crypto3:amd64.md5sums
[edit]
[-] libselinux1:amd64.symbols
[edit]
[-] systemd.triggers
[edit]
[-] python3-launchpadlib.list
[edit]
[-] fdisk.md5sums
[edit]
[-] readline-common.postinst
[edit]
[-] libjbig0:amd64.symbols
[edit]
[-] php8.0-mysql.postinst
[edit]
[-] python3-systemd.md5sums
[edit]
[-] libcom-err2:amd64.md5sums
[edit]
[-] udev.postinst
[edit]
[-] groff-base.conffiles
[edit]
[-] irqbalance.postrm
[edit]
[-] vim-common.prerm
[edit]
[-] python3-markupsafe.md5sums
[edit]
[-] libgcc-9-dev:amd64.md5sums
[edit]
[-] libutempter0:amd64.triggers
[edit]
[-] php8.0-gd.prerm
[edit]
[-] mariadb-common.preinst
[edit]
[-] ucf.conffiles
[edit]
[-] libpam-modules:amd64.postrm
[edit]
[-] libpipeline1:amd64.triggers
[edit]
[-] libgssapi-krb5-2:amd64.list
[edit]
[-] multipath-tools.postrm
[edit]
[-] libuchardet0:amd64.list
[edit]
[-] cpio.prerm
[edit]
[-] python3-problem-report.md5sums
[edit]
[-] linux-modules-5.15.0-1027-aws.list
[edit]
[-] libmail-sendmail-perl.md5sums
[edit]
[-] sosreport.conffiles
[edit]
[-] php-composer-ca-bundle.list
[edit]
[-] linux-image-5.15.0-1071-aws.postrm
[edit]
[-] libasn1-8-heimdal:amd64.md5sums
[edit]
[-] dash.config
[edit]
[-] libcbor0.6:amd64.list
[edit]
[-] btrfs-progs.list
[edit]
[-] odbcinst1debian2:amd64.symbols
[edit]
[-] cron.postrm
[edit]
[-] systemd.prerm
[edit]
[-] python3-nacl.prerm
[edit]
[-] apport.postrm
[edit]
[-] libaio1:amd64.symbols
[edit]
[-] libgirepository-1.0-1:amd64.symbols
[edit]
[-] perl.conffiles
[edit]
[-] python3-zope.interface.postinst
[edit]
[-] bsdmainutils.prerm
[edit]
[-] libbz2-1.0:amd64.shlibs
[edit]
[-] pci.ids.md5sums
[edit]
[-] linux-modules-5.15.0-1027-aws.postrm
[edit]
[-] linux-modules-5.11.0-1019-aws.postrm
[edit]
[-] php-common.prerm
[edit]
[-] gpg-agent.postinst
[edit]
[-] isc-dhcp-client.list
[edit]
[-] open-iscsi.md5sums
[edit]
[-] intel-microcode.md5sums
[edit]
[-] gnupg-utils.md5sums
[edit]
[-] libyaml-0-2:amd64.md5sums
[edit]
[-] base-files.postrm
[edit]
[-] linux-image-5.15.0-1017-aws.postrm
[edit]
[-] tcpdump.md5sums
[edit]
[-] libbz2-1.0:amd64.list
[edit]
[-] mtr-tiny.list
[edit]
[-] linux-modules-5.15.0-1067-aws.list
[edit]
[-] libjson-glib-1.0-0:amd64.triggers
[edit]
[-] libxmlsec1-openssl:amd64.triggers
[edit]
[-] gpg-agent.conffiles
[edit]
[-] linux-image-5.15.0-1039-aws.postrm
[edit]
[-] fuse.postrm
[edit]
[-] python3-minimal.md5sums
[edit]
[-] libestr0:amd64.list
[edit]
[-] finalrd.postinst
[edit]
[-] libpcre2-32-0:amd64.md5sums
[edit]
[-] lz4.list
[edit]
[-] libestr0:amd64.md5sums
[edit]
[-] ufw.conffiles
[edit]
[-] sed.list
[edit]
[-] libksba8:amd64.symbols
[edit]
[-] libdevmapper1.02.1:amd64.triggers
[edit]
[-] libheimbase1-heimdal:amd64.list
[edit]
[-] vim-tiny.md5sums
[edit]
[-] libgmp10:amd64.md5sums
[edit]
[-] vim-common.postinst
[edit]
[-] linux-image-5.11.0-1023-aws.postrm
[edit]
[-] mariadb-server-10.3.templates
[edit]
[-] python3-debian.postinst
[edit]
[-] libunistring2:amd64.md5sums
[edit]
[-] libglib2.0-data.md5sums
[edit]
[-] libusb-1.0-0:amd64.shlibs
[edit]
[-] libtool.list
[edit]
[-] libpam-modules:amd64.postinst
[edit]
[-] libzstd1:amd64.md5sums
[edit]
[-] libfontconfig1:amd64.list
[edit]
[-] linux-image-5.13.0-1022-aws.postrm
[edit]
[-] python3-cryptography.list
[edit]
[-] kpartx.md5sums
[edit]
[-] libpcre3:amd64.triggers
[edit]
[-] libp11-kit0:amd64.shlibs
[edit]
[-] open-vm-tools.list
[edit]
[-] acpid.prerm
[edit]
[-] libpython3.8-minimal:amd64.prerm
[edit]
[-] base-passwd.md5sums
[edit]
[-] php7.4-sqlite3.list
[edit]
[-] linux-image-5.15.0-1070-aws.list
[edit]
[-] libhx509-5-heimdal:amd64.md5sums
[edit]
[-] javascript-common.postinst
[edit]
[-] mariadb-client-10.3.conffiles
[edit]
[-] libbz2-1.0:amd64.triggers
[edit]
[-] xz-utils.list
[edit]
[-] python3-dbus.list
[edit]
[-] php8.0-common.triggers
[edit]
[-] libnettle7:amd64.md5sums
[edit]
[-] vim-runtime.list
[edit]
[-] libarchive13:amd64.list
[edit]
[-] libdconf1:amd64.md5sums
[edit]
[-] python3-colorama.md5sums
[edit]
[-] dbus-user-session.list
[edit]
[-] tar.list
[edit]
[-] python3-jsonpatch.prerm
[edit]
[-] libterm-readkey-perl.md5sums
[edit]
[-] python3-requests.md5sums
[edit]
[-] debhelper.list
[edit]
[-] libvorbisfile3:amd64.shlibs
[edit]
[-] libgpm2:amd64.md5sums
[edit]
[-] microcode-initrd.md5sums
[edit]
[-] libpsl5:amd64.list
[edit]
[-] php7.4-mbstring.list
[edit]
[-] liblsan0:amd64.symbols
[edit]
[-] libmnl0:amd64.md5sums
[edit]
[-] file.list
[edit]
[-] linux-modules-5.15.0-1036-aws.postrm
[edit]
[-] libzstd1:amd64.list
[edit]
[-] gir1.2-glib-2.0:amd64.list
[edit]
[-] libcap2-bin.md5sums
[edit]
[-] grub-pc.config
[edit]
[-] util-linux.list
[edit]
[-] libpam0g:amd64.symbols
[edit]
[-] libsasl2-modules:amd64.postinst
[edit]
[-] libunwind8:amd64.shlibs
[edit]
[-] libx11-6:amd64.symbols
[edit]
[-] libelf1:amd64.md5sums
[edit]
[-] liblz4-1:amd64.md5sums
[edit]
[-] libmount1:amd64.list
[edit]
[-] libxslt1.1:amd64.list
[edit]
[-] readline-common.md5sums
[edit]
[-] libvorbisfile3:amd64.list
[edit]
[-] po-debconf.md5sums
[edit]
[-] libjson-glib-1.0-0:amd64.md5sums
[edit]
[-] linux-image-5.15.0-1084-aws.prerm
[edit]
[-] python3-requests-unixsocket.postinst
[edit]
[-] msodbcsql17.md5sums
[edit]
[-] cryptsetup.postrm
[edit]
[-] linux-modules-5.15.0-1038-aws.postrm
[edit]
[-] software-properties-common.md5sums
[edit]
[-] xdg-user-dirs.md5sums
[edit]
[-] libproxy1v5:amd64.md5sums
[edit]
[-] iptables.list
[edit]
[-] ubuntu-keyring.list
[edit]
[-] libedit2:amd64.symbols
[edit]
[-] parted.list
[edit]
[-] linux-modules-5.15.0-1084-aws.postrm
[edit]
[-] libjs-jquery.list
[edit]
[-] libfuse2:amd64.symbols
[edit]
[-] logsave.list
[edit]
[-] pinentry-curses.postinst
[edit]
[-] man-db.list
[edit]
[-] libroken18-heimdal:amd64.list
[edit]
[-] python3-click.md5sums
[edit]
[-] linux-image-5.11.0-1028-aws.postrm
[edit]
[-] dirmngr.md5sums
[edit]
[-] mariadb-client-core-10.3.list
[edit]
[-] pciutils.list
[edit]
[-] libsasl2-2:amd64.list
[edit]
[-] iputils-ping.list
[edit]
[-] libpackagekit-glib2-18:amd64.list
[edit]
[-] libip4tc2:amd64.shlibs
[edit]
[-] tzdata.templates
[edit]
[-] linux-image-5.11.0-1023-aws.list
[edit]
[-] linux-modules-5.15.0-1017-aws.list
[edit]
[-] libfido2-1:amd64.list
[edit]
[-] libfreetype6:amd64.list
[edit]
[-] linux-modules-5.11.0-1021-aws.list
[edit]
[-] intltool-debian.md5sums
[edit]
[-] util-linux.conffiles
[edit]
[-] libcurl3-gnutls:amd64.list
[edit]
[-] libmnl0:amd64.triggers
[edit]
[-] libjbig0:amd64.shlibs
[edit]
[-] libidn2-0:amd64.triggers
[edit]
[-] grub-common.list
[edit]
[-] debianutils.postrm
[edit]
[-] bash.preinst
[edit]
[-] libnuma1:amd64.symbols
[edit]
[-] locales.postrm
[edit]
[-] libwebp6:amd64.list
[edit]
[-] libcap2:amd64.triggers
[edit]
[-] libp11-kit0:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1019-aws.list
[edit]
[-] passwd.list
[edit]
[-] python3-zope.interface.prerm
[edit]
[-] linux-modules-5.15.0-1036-aws.list
[edit]
[-] gnupg-utils.list
[edit]
[-] phpmyadmin.config
[edit]
[-] ssl-cert.postinst
[edit]
[-] libpam-modules:amd64.preinst
[edit]
[-] php7.4-gd.list
[edit]
[-] php7.4-common.list
[edit]
[-] netcat-openbsd.md5sums
[edit]
[-] libasound2:amd64.shlibs
[edit]
[-] libgpm2:amd64.shlibs
[edit]
[-] composer.list
[edit]
[-] python3-keyring.md5sums
[edit]
[-] gettext-base.triggers
[edit]
[-] libseccomp2:amd64.list
[edit]
[-] mawk.prerm
[edit]
[-] lsof.list
[edit]
[-] cloud-init.preinst
[edit]
[-] mdadm.preinst
[edit]
[-] gcc.md5sums
[edit]
[-] libgstreamer1.0-0:amd64.triggers
[edit]
[-] cloud-init.config
[edit]
[-] isc-dhcp-client.md5sums
[edit]
[-] libaprutil1-ldap:amd64.list
[edit]
[-] python3-chardet.postinst
[edit]
[-] ubuntu-keyring.postinst
[edit]
[-] libldap-2.4-2:amd64.symbols
[edit]
[-] php7.4-zip.triggers
[edit]
[-] netbase.list
[edit]
[-] openssh-client.list
[edit]
[-] zlib1g:amd64.list
[edit]
[-] libquadmath0:amd64.symbols
[edit]
[-] netbase.postinst
[edit]
[-] eatmydata.md5sums
[edit]
[-] libeatmydata1:amd64.triggers
[edit]
[-] logrotate.list
[edit]
[-] networkd-dispatcher.conffiles
[edit]
[-] ncurses-base.conffiles
[edit]
[-] manpages-dev.md5sums
[edit]
[-] lsb-release.postinst
[edit]
[-] libwrap0:amd64.symbols
[edit]
[-] finalrd.prerm
[edit]
[-] python3-distro-info.md5sums
[edit]
[-] ssl-cert.md5sums
[edit]
[-] cloud-initramfs-dyn-netconf.list
[edit]
[-] libsnappy1v5:amd64.list
[edit]
[-] libfuse2:amd64.triggers
[edit]
[-] libaudit1:amd64.symbols
[edit]
[-] python3-requests.list
[edit]
[-] libreadline8:amd64.triggers
[edit]
[-] python3-zipp.list
[edit]
[-] libalgorithm-merge-perl.md5sums
[edit]
[-] python3.8.md5sums
[edit]
[-] linux-modules-5.15.0-1063-aws.list
[edit]
[-] systemd.postinst
[edit]
[-] libsemanage-common.md5sums
[edit]
[-] linux-image-5.15.0-1070-aws.postrm
[edit]
[-] libfastjson4:amd64.symbols
[edit]
[-] bash-completion.prerm
[edit]
[-] bash.md5sums
[edit]
[-] libtext-charwidth-perl.md5sums
[edit]
[-] libonig5:amd64.shlibs
[edit]
[-] libnghttp2-14:amd64.symbols
[edit]
[-] iputils-tracepath.md5sums
[edit]
[-] dash.prerm
[edit]
[-] php7.4-sqlite3.md5sums
[edit]
[-] libaio1:amd64.md5sums
[edit]
[-] pciutils.md5sums
[edit]
[-] libasan5:amd64.symbols
[edit]
[-] mysql-common.conffiles
[edit]
[-] ltrace.conffiles
[edit]
[-] libhx509-5-heimdal:amd64.symbols
[edit]
[-] libnuma1:amd64.md5sums
[edit]
[-] gawk.prerm
[edit]
[-] lxd-agent-loader.prerm
[edit]
[-] libnewt0.52:amd64.conffiles
[edit]
[-] lxd-agent-loader.postinst
[edit]
[-] mssql-tools.config
[edit]
[-] python3-ptyprocess.postinst
[edit]
[-] php-symfony-expression-language.md5sums
[edit]
[-] linux-modules-5.4.0-1045-aws.postrm
[edit]
[-] libuuid1:amd64.triggers
[edit]
[-] php7.4-mysql.preinst
[edit]
[-] initramfs-tools-core.postrm
[edit]
[-] libsqlite3-0:amd64.md5sums
[edit]
[-] php8.0-cli.list
[edit]
[-] debconf.postinst
[edit]
[-] auditd.preinst
[edit]
[-] e2fsprogs.postrm
[edit]
[-] grub-gfxpayload-lists.prerm
[edit]
[-] libeatmydata1:amd64.md5sums
[edit]
[-] php-phpseclib.list
[edit]
[-] dbconfig-common.postinst
[edit]
[-] libxtables12:amd64.list
[edit]
[-] gcc-9.md5sums
[edit]
[-] libfastjson4:amd64.triggers
[edit]
[-] lxd-agent-loader.md5sums
[edit]
[-] libyaml-0-2:amd64.symbols
[edit]
[-] thin-provisioning-tools.list
[edit]
[-] python3-importlib-metadata.prerm
[edit]
[-] python3-pexpect.prerm
[edit]
[-] linux-image-5.15.0-1051-aws.postrm
[edit]
[-] cryptsetup-initramfs.list
[edit]
[-] cloud-init.conffiles
[edit]
[-] libxpm4:amd64.shlibs
[edit]
[-] libapr1:amd64.symbols
[edit]
[-] autotools-dev.md5sums
[edit]
[-] php7.4-intl.list
[edit]
[-] libsepol1:amd64.shlibs
[edit]
[-] ed.list
[edit]
[-] adduser.templates
[edit]
[-] libmnl0:amd64.symbols
[edit]
[-] libconfig-inifiles-perl.md5sums
[edit]
[-] libparted2:amd64.symbols
[edit]
[-] libxpm4:amd64.triggers
[edit]
[-] libbrotli1:amd64.triggers
[edit]
[-] libtsan0:amd64.md5sums
[edit]
[-] libtss2-esys0.symbols
[edit]
[-] nano.conffiles
[edit]
[-] libhx509-5-heimdal:amd64.list
[edit]
[-] libubsan1:amd64.symbols
[edit]
[-] php7.4-bz2.triggers
[edit]
[-] policykit-1.preinst
[edit]
[-] software-properties-common.list
[edit]
[-] linux-modules-5.15.0-1045-aws.list
[edit]
[-] libgssapi-krb5-2:amd64.shlibs
[edit]
[-] libtinfo6:amd64.triggers
[edit]
[-] libc-dev-bin.md5sums
[edit]
[-] php8.0-mcrypt.md5sums
[edit]
[-] linux-base.templates
[edit]
[-] linux-modules-5.11.0-1020-aws.list
[edit]
[-] libisns0:amd64.triggers
[edit]
[-] php-composer-semver.md5sums
[edit]
[-] thin-provisioning-tools.postinst
[edit]
[-] libpcre2-posix2:amd64.symbols
[edit]
[-] libalgorithm-diff-xs-perl.md5sums
[edit]
[-] php8.0-mysql.triggers
[edit]
[-] packagekit.md5sums
[edit]
[-] libapache2-mod-fcgid.md5sums
[edit]
[-] libtext-wrapi18n-perl.md5sums
[edit]
[-] dmeventd.shlibs
[edit]
[-] libtsan0:amd64.shlibs
[edit]
[-] python3-gi.postinst
[edit]
[-] procps.conffiles
[edit]
[-] linux-modules-5.13.0-1029-aws.list
[edit]
[-] busybox-initramfs.list
[edit]
[-] php7.4-bcmath.preinst
[edit]
[-] lvm2.list
[edit]
[-] open-iscsi.list
[edit]
[-] python3-attr.postinst
[edit]
[-] tpm-udev.md5sums
[edit]
[-] libxdmcp6:amd64.shlibs
[edit]
[-] dbconfig-common.conffiles
[edit]
[-] ubuntu-advantage-tools.postrm
[edit]
[-] phpmyadmin.postinst
[edit]
[-] mariadb-server-10.3.prerm
[edit]
[-] coreutils.md5sums
[edit]
[-] time.md5sums
[edit]
[-] e2fsprogs.md5sums
[edit]
[-] libdb5.3:amd64.md5sums
[edit]
[-] python3-pexpect.postinst
[edit]
[-] libassuan0:amd64.symbols
[edit]
[-] libmount1:amd64.shlibs
[edit]
[-] apparmor.postinst
[edit]
[-] libbrotli1:amd64.list
[edit]
[-] python3-apt.prerm
[edit]
[-] make.list
[edit]
[-] python3-certifi.md5sums
[edit]
[-] fwupd.conffiles
[edit]
[-] gir1.2-packagekitglib-1.0.md5sums
[edit]
[-] libnfnetlink0:amd64.md5sums
[edit]
[-] open-vm-tools.shlibs
[edit]
[-] rsyslog.triggers
[edit]
[-] php8.0-zip.list
[edit]
[-] libdbus-1-3:amd64.shlibs
[edit]
[-] libudev1:amd64.md5sums
[edit]
[-] bash.list
[edit]
[-] libsigsegv2:amd64.triggers
[edit]
[-] php8.0-mbstring.preinst
[edit]
[-] libdevmapper-event1.02.1:amd64.symbols
[edit]
[-] libplymouth5:amd64.shlibs
[edit]
[-] libjansson4:amd64.md5sums
[edit]
[-] man-db.postrm
[edit]
[-] apache2.postrm
[edit]
[-] dwz.md5sums
[edit]
[-] python3-jwt.prerm
[edit]
[-] squashfs-tools.list
[edit]
[-] ncurses-bin.md5sums
[edit]
[-] motd-news-config.list
[edit]
[-] perl.prerm
[edit]
[-] libdconf1:amd64.list
[edit]
[-] python3-commandnotfound.postinst
[edit]
[-] rsyslog.md5sums
[edit]
[-] update-notifier-common.conffiles
[edit]
[-] libseccomp2:amd64.shlibs
[edit]
[-] libip6tc2:amd64.symbols
[edit]
[-] python3-oauthlib.postinst
[edit]
[-] openssh-client.postrm
[edit]
[-] libc-bin.conffiles
[edit]
[-] php-json-schema.md5sums
[edit]
[-] fakeroot.prerm
[edit]
[-] libsigsegv2:amd64.list
[edit]
[-] php7.4-mbstring.preinst
[edit]
[-] php7.4-opcache.list
[edit]
[-] libpam0g:amd64.postinst
[edit]
[-] libisc-export1105:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1028-aws.list
[edit]
[-] popularity-contest.templates
[edit]
[-] linux-modules-5.11.0-1017-aws.list
[edit]
[-] libroken18-heimdal:amd64.triggers
[edit]
[-] iso-codes.md5sums
[edit]
[-] python3-setuptools.md5sums
[edit]
[-] libltdl-dev:amd64.md5sums
[edit]
[-] hdparm.preinst
[edit]
[-] php8.0-cli.prerm
[edit]
[-] libselinux1:amd64.list
[edit]
[-] shared-mime-info.triggers
[edit]
[-] php7.4-bcmath.list
[edit]
[-] less.prerm
[edit]
[-] linux-image-5.15.0-1040-aws.postrm
[edit]
[-] libsemanage1:amd64.symbols
[edit]
[-] php8.0-xml.postrm
[edit]
[-] python3-wadllib.prerm
[edit]
[-] libgdbm-compat4:amd64.symbols
[edit]
[-] sensible-utils.md5sums
[edit]
[-] overlayroot.postinst
[edit]
[-] sudo.preinst
[edit]
[-] mdadm.postinst
[edit]
[-] mariadb-server-10.3.conffiles
[edit]
[-] kpartx.prerm
[edit]
[-] linux-image-5.15.0-1082-aws.postrm
[edit]
[-] python3-hamcrest.md5sums
[edit]
[-] php8.0-mbstring.md5sums
[edit]
[-] autoconf.list
[edit]
[-] php8.0-mcrypt.postrm
[edit]
[-] friendly-recovery.postrm
[edit]
[-] sosreport.list
[edit]
[-] python3-pymacaroons.list
[edit]
[-] rsyslog.postinst
[edit]
[-] php-dev.postinst
[edit]
[-] linux-modules-5.15.0-1069-aws.postrm
[edit]
[-] php-twig-extensions.list
[edit]
[-] linux-modules-5.13.0-1022-aws.list
[edit]
[-] gawk.postinst
[edit]
[-] python3-serial.list
[edit]
[-] libatomic1:amd64.list
[edit]
[-] libpcre2-32-0:amd64.list
[edit]
[-] libmcrypt4.triggers
[edit]
[-] mtr-tiny.postinst
[edit]
[-] liblzo2-2:amd64.md5sums
[edit]
[-] libapr1:amd64.triggers
[edit]
[-] libc6-dev:amd64.list
[edit]
[-] iproute2.postinst
[edit]
[-] php7.4-fpm.postinst
[edit]
[-] linux-modules-5.11.0-1028-aws.list
[edit]
[-] mawk.md5sums
[edit]
[-] libreadline8:amd64.md5sums
[edit]
[-] libpython3.8-stdlib:amd64.md5sums
[edit]
[-] ethtool.list
[edit]
[-] libsystemd0:amd64.md5sums
[edit]
[-] libhcrypto4-heimdal:amd64.shlibs
[edit]
[-] python3-keyring.list
[edit]
[-] tmux.preinst
[edit]
[-] libpolkit-gobject-1-0:amd64.list
[edit]
[-] sudo.prerm
[edit]
[-] python3-debconf.list
[edit]
[-] php-psr-cache.list
[edit]
[-] klibc-utils.list
[edit]
[-] ubuntu-minimal.md5sums
[edit]
[-] python3-systemd.prerm
[edit]
[-] dbconfig-common.postrm
[edit]
[-] man-db.templates
[edit]
[-] php8.0-mcrypt.postinst
[edit]
[-] psmisc.list
[edit]
[-] python3-httplib2.prerm
[edit]
[-] python3-requests-unixsocket.md5sums
[edit]
[-] libsepol1:amd64.list
[edit]
[-] libmpfr6:amd64.triggers
[edit]
[-] libklibc:amd64.list
[edit]
[-] msodbcsql17.postrm
[edit]
[-] tpm-udev.postinst
[edit]
[-] libperl5.30:amd64.symbols
[edit]
[-] libcanberra0:amd64.symbols
[edit]
[-] libslang2:amd64.triggers
[edit]
[-] libodbc1:amd64.postinst
[edit]
[-] at.postrm
[edit]
[-] bash-completion.postrm
[edit]
[-] bind9-dnsutils.md5sums
[edit]
[-] linux-image-5.15.0-1075-aws.list
[edit]
[-] install-info.postinst
[edit]
[-] php7.4-mysql.list
[edit]
[-] libctf-nobfd0:amd64.triggers
[edit]
[-] gettext.triggers
[edit]
[-] php-dev.prerm
[edit]
[-] gpgv.list
[edit]
[-] passwd.conffiles
[edit]
[-] libefivar1:amd64.md5sums
[edit]
[-] libkrb5-26-heimdal:amd64.shlibs
[edit]
[-] tzdata.postrm
[edit]
[-] pciutils.preinst
[edit]
[-] php8.0-mysql.postrm
[edit]
[-] linux-image-5.4.0-1045-aws.preinst
[edit]
[-] python3-pyrsistent:amd64.prerm
[edit]
[-] libhttp-date-perl.list
[edit]
[-] libssl1.1:amd64.postrm
[edit]
[-] libheimbase1-heimdal:amd64.triggers
[edit]
[-] rsync.md5sums
[edit]
[-] libestr0:amd64.triggers
[edit]
[-] libencode-locale-perl.list
[edit]
[-] python3-configobj.postinst
[edit]
[-] libodbc1:amd64.md5sums
[edit]
[-] libnuma1:amd64.shlibs
[edit]
[-] linux-aws.md5sums
[edit]
[-] linux-image-aws.md5sums
[edit]
[-] libglib2.0-0:amd64.list
[edit]
[-] libcbor0.6:amd64.md5sums
[edit]
[-] linux-image-5.15.0-1084-aws.postinst
[edit]
[-] pinentry-curses.list
[edit]
[-] grub-common.templates
[edit]
[-] php-symfony-cache-contracts.md5sums
[edit]
[-] libnewt0.52:amd64.md5sums
[edit]
[-] libc-bin.triggers
[edit]
[-] libcanberra0:amd64.triggers
[edit]
[-] libldap-common.list
[edit]
[-] apt.md5sums
[edit]
[-] python3-json-pointer.list
[edit]
[-] php-psr-container.md5sums
[edit]
[-] keyboard-configuration.preinst
[edit]
[-] mime-support.prerm
[edit]
[-] libkeyutils1:amd64.shlibs
[edit]
[-] m4.list
[edit]
[-] linux-modules-5.15.0-1026-aws.list
[edit]
[-] dmsetup.postinst
[edit]
[-] liburi-perl.md5sums
[edit]
[-] libdebconfclient0:amd64.symbols
[edit]
[-] libisl22:amd64.list
[edit]
[-] libpam0g:amd64.triggers
[edit]
[-] apparmor.conffiles
[edit]
[-] apache2-bin.md5sums
[edit]
[-] libelf1:amd64.shlibs
[edit]
[-] byobu.templates
[edit]
[-] php-mcrypt.list
[edit]
[-] libpam-cap:amd64.prerm
[edit]
[-] fontconfig-config.list
[edit]
[-] linux-image-5.15.0-1026-aws.postrm
[edit]
[-] linux-image-5.15.0-1035-aws.list
[edit]
[-] libgdbm6:amd64.md5sums
[edit]
[-] ufw.templates
[edit]
[-] libjson-c4:amd64.list
[edit]
[-] linux-modules-5.11.0-1027-aws.list
[edit]
[-] libgirepository-1.0-1:amd64.list
[edit]
[-] python3-distutils.postinst
[edit]
[-] libcap-ng0:amd64.shlibs
[edit]
[-] linux-image-5.13.0-1031-aws.postrm
[edit]
[-] python3-oauthlib.prerm
[edit]
[-] ethtool.conffiles
[edit]
[-] libxext6:amd64.md5sums
[edit]
[-] shared-mime-info.postrm
[edit]
[-] php-common.postrm
[edit]
[-] linux-image-5.15.0-1049-aws.postrm
[edit]
[-] libwebp6:amd64.shlibs
[edit]
[-] irqbalance.preinst
[edit]
[-] gdisk.md5sums
[edit]
[-] linux-modules-5.15.0-1075-aws.list
[edit]
[-] msodbcsql17.preinst
[edit]
[-] liblmdb0:amd64.list
[edit]
[-] sound-theme-freedesktop.md5sums
[edit]
[-] phpmyadmin.conffiles
[edit]
[-] libfribidi0:amd64.list
[edit]
[-] linux-headers-5.4.0-1045-aws.list
[edit]
[-] libaprutil1:amd64.list
[edit]
[-] libkmod2:amd64.list
[edit]
[-] python3-chardet.md5sums
[edit]
[-] openssh-server.postrm
[edit]
[-] libpcre2-32-0:amd64.triggers
[edit]
[-] libgcrypt20:amd64.list
[edit]
[-] libnetfilter-conntrack3:amd64.shlibs
[edit]
[-] multipath-tools.list
[edit]
[-] python3.md5sums
[edit]
[-] python3-zipp.postinst
[edit]
[-] cryptsetup.md5sums
[edit]
[-] base-files.md5sums
[edit]
[-] cpp.md5sums
[edit]
[-] xdg-user-dirs.conffiles
[edit]
[-] php8.0-dev.md5sums
[edit]
[-] uuid-runtime.md5sums
[edit]
[-] ec2-hibinit-agent.prerm
[edit]
[-] htop.list
[edit]
[-] libss2:amd64.symbols
[edit]
[-] ltrace.list
[edit]
[-] php7.4-zip.preinst
[edit]
[-] libsasl2-modules:amd64.md5sums
[edit]
[-] psmisc.md5sums
[edit]
[-] libcurl4:amd64.list
[edit]
[-] bash.postrm
[edit]
[-] libxcb1:amd64.list
[edit]
[-] libgcrypt20:amd64.md5sums
[edit]
[-] openssh-sftp-server.md5sums
[edit]
[-] libvorbis0a:amd64.shlibs
[edit]
[-] libfakeroot:amd64.md5sums
[edit]
[-] alsa-ucm-conf.list
[edit]
[-] bolt.prerm
[edit]
[-] mariadb-server-core-10.3.md5sums
[edit]
[-] python3-nacl.md5sums
[edit]
[-] linux-modules-5.15.0-1071-aws.list
[edit]
[-] libprocps8:amd64.triggers
[edit]
[-] popularity-contest.postinst
[edit]
[-] libmysqlclient21:amd64.triggers
[edit]
[-] nano.prerm
[edit]
[-] shared-mime-info.list
[edit]
[-] libxmlsec1-openssl:amd64.list
[edit]
[-] libdns-export1109.triggers
[edit]
[-] linux-modules-5.15.0-1041-aws.postrm
[edit]
[-] libsigsegv2:amd64.symbols
[edit]
[-] pastebinit.list
[edit]
[-] php7.4-readline.postinst
[edit]
[-] linux-modules-5.15.0-1035-aws.postrm
[edit]
[-] ufw.postinst
[edit]
[-] iputils-ping.md5sums
[edit]
[-] linux-modules-5.8.0-1041-aws.list
[edit]
[-] liburcu6:amd64.shlibs
[edit]
[-] linux-headers-5.4.0-1045-aws.md5sums
[edit]
[-] libheimbase1-heimdal:amd64.symbols
[edit]
[-] php-symfony-var-exporter.md5sums
[edit]
[-] keyboard-configuration.md5sums
[edit]
[-] dconf-gsettings-backend:amd64.md5sums
[edit]
[-] php7.4-common.postrm
[edit]
[-] linux-image-5.15.0-1069-aws.postrm
[edit]
[-] python3-secretstorage.md5sums
[edit]
[-] libpython3.8-minimal:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1077-aws.postrm
[edit]
[-] python3-service-identity.md5sums
[edit]
[-] adduser.md5sums
[edit]
[-] libgpm2:amd64.triggers
[edit]
[-] libhcrypto4-heimdal:amd64.symbols
[edit]
[-] xdg-user-dirs.postinst
[edit]
[-] libnghttp2-14:amd64.list
[edit]
[-] lxd-agent-loader.list
[edit]
[-] linux-image-5.15.0-1050-aws.postrm
[edit]
[-] python3.postinst
[edit]
[-] cloud-guest-utils.md5sums
[edit]
[-] udev.postrm
[edit]
[-] linux-modules-5.15.0-1080-aws.list
[edit]
[-] linux-image-5.8.0-1042-aws.list
[edit]
[-] linux-modules-5.15.0-1070-aws.postrm
[edit]
[-] libxdmcp6:amd64.md5sums
[edit]
[-] auditd.list
[edit]
[-] php8.0-gd.triggers
[edit]
[-] libxmuu1:amd64.md5sums
[edit]
[-] libevent-2.1-7:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1071-aws.postrm
[edit]
[-] xdg-user-dirs.list
[edit]
[-] linux-image-5.15.0-1057-aws.list
[edit]
[-] libcryptsetup12:amd64.triggers
[edit]
[-] php7.4-mysql.md5sums
[edit]
[-] mariadb-common.list
[edit]
[-] linux-image-5.15.0-1047-aws.list
[edit]
[-] librtmp1:amd64.md5sums
[edit]
[-] bind9-libs:amd64.triggers
[edit]
[-] php-mbstring.md5sums
[edit]
[-] libedit2:amd64.list
[edit]
[-] hdparm.conffiles
[edit]
[-] linux-libc-dev:amd64.list
[edit]
[-] php-json.list
[edit]
[-] python3.8-minimal.prerm
[edit]
[-] python3-httplib2.postinst
[edit]
[-] libcurl3-gnutls:amd64.symbols
[edit]
[-] landscape-common.md5sums
[edit]
[-] libctf-nobfd0:amd64.list
[edit]
[-] libjbig0:amd64.md5sums
[edit]
[-] php7.4-json.prerm
[edit]
[-] python3-keyring.prerm
[edit]
[-] php-xml.list
[edit]
[-] libmysqlclient21:amd64.list
[edit]
[-] gcc-10-base:amd64.md5sums
[edit]
[-] libmpfr6:amd64.symbols
[edit]
[-] libasan5:amd64.triggers
[edit]
[-] dbus-user-session.md5sums
[edit]
[-] linux-modules-5.13.0-1025-aws.postrm
[edit]
[-] libgpgme11:amd64.shlibs
[edit]
[-] libonig5:amd64.triggers
[edit]
[-] debconf-i18n.list
[edit]
[-] python3-hyperlink.postinst
[edit]
[-] php-symfony-console.list
[edit]
[-] libappstream4:amd64.shlibs
[edit]
[-] linux-modules-5.15.0-1043-aws.list
[edit]
[-] php8.0-opcache.prerm
[edit]
[-] librtmp1:amd64.triggers
[edit]
[-] linux-modules-5.13.0-1023-aws.postrm
[edit]
[-] php-symfony-filesystem.list
[edit]
[-] libpcre2-8-0:amd64.symbols
[edit]
[-] cryptsetup.conffiles
[edit]
[-] libfile-stripnondeterminism-perl.list
[edit]
[-] linux-modules-5.11.0-1023-aws.list
[edit]
[-] php7.4-intl.postrm
[edit]
[-] php-phpmyadmin-motranslator.md5sums
[edit]
[-] libcroco3:amd64.list
[edit]
[-] php8.0-common.postrm
[edit]
[-] libtasn1-6:amd64.triggers
[edit]
[-] base-passwd.list
[edit]
[-] libpackagekit-glib2-18:amd64.triggers
[edit]
[-] php-common.list
[edit]
[-] libinotifytools0:amd64.md5sums
[edit]
[-] libelf1:amd64.list
[edit]
[-] python3-openssl.prerm
[edit]
[-] lvm2.md5sums
[edit]
[-] libaudit1:amd64.list
[edit]
[-] libitm1:amd64.md5sums
[edit]
[-] python-apt-common.list
[edit]
[-] login.postrm
[edit]
[-] libsemanage1:amd64.md5sums
[edit]
[-] libip6tc2:amd64.shlibs
[edit]
[-] libdebconfclient0:amd64.shlibs
[edit]
[-] at.prerm
[edit]
[-] linux-modules-5.13.0-1025-aws.list
[edit]
[-] libbrotli1:amd64.md5sums
[edit]
[-] libunwind8:amd64.list
[edit]
[-] libnpth0:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1028-aws.list
[edit]
[-] libldap-2.4-2:amd64.shlibs
[edit]
[-] manpages.md5sums
[edit]
[-] unzip.md5sums
[edit]
[-] thin-provisioning-tools.md5sums
[edit]
[-] dosfstools.md5sums
[edit]
[-] php7.4-zip.prerm
[edit]
[-] debconf.templates
[edit]
[-] python3-more-itertools.postinst
[edit]
[-] dconf-gsettings-backend:amd64.list
[edit]
[-] odbcinst1debian2:amd64.shlibs
[edit]
[-] netcat-openbsd.postinst
[edit]
[-] linux-modules-5.15.0-1064-aws.postrm
[edit]
[-] python3-debconf.md5sums
[edit]
[-] libnetplan0:amd64.triggers
[edit]
[-] libxmlb1:amd64.shlibs
[edit]
[-] python3-requests.prerm
[edit]
[-] linux-modules-5.15.0-1062-aws.list
[edit]
[-] libbsd0:amd64.list
[edit]
[-] libubsan1:amd64.md5sums
[edit]
[-] libuv1:amd64.symbols
[edit]
[-] linux-image-5.11.0-1021-aws.postrm
[edit]
[-] libnfnetlink0:amd64.list
[edit]
[-] mssql-tools.prerm
[edit]
[-] php8.0-opcache.postinst
[edit]
[-] libisl22:amd64.symbols
[edit]
[-] kmod.md5sums
[edit]
[-] libjpeg-turbo8:amd64.md5sums
[edit]
[-] cloud-initramfs-copymods.md5sums
[edit]
[-] libonig5:amd64.list
[edit]
[-] liblz4-1:amd64.list
[edit]
[-] libjpeg-turbo8:amd64.list
[edit]
[-] libusb-1.0-0:amd64.list
[edit]
[-] libassuan0:amd64.triggers
[edit]
[-] libxslt1.1:amd64.triggers
[edit]
[-] grub-pc-bin.list
[edit]
[-] php-composer-xdebug-handler.md5sums
[edit]
[-] update-notifier-common.list
[edit]
[-] bsdmainutils.list
[edit]
[-] linux-image-5.15.0-1068-aws.postrm
[edit]
[-] python3-commandnotfound.prerm
[edit]
[-] libatomic1:amd64.shlibs
[edit]
[-] libpcre2-dev:amd64.md5sums
[edit]
[-] gawk.list
[edit]
[-] libaccountsservice0:amd64.list
[edit]
[-] cryptsetup-bin.postinst
[edit]
[-] pkg-php-tools.md5sums
[edit]
[-] javascript-common.prerm
[edit]
[-] libelf1:amd64.symbols
[edit]
[-] libslang2:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1073-aws.list
[edit]
[-] libfdisk1:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1055-aws.list
[edit]
[-] libxtables12:amd64.shlibs
[edit]
[-] libc6:amd64.triggers
[edit]
[-] open-iscsi.postrm
[edit]
[-] update-manager-core.list
[edit]
[-] policykit-1.postinst
[edit]
[-] linux-modules-5.15.0-1083-aws.list
[edit]
[-] linux-image-5.8.0-1038-aws.postrm
[edit]
[-] isc-dhcp-client.postinst
[edit]
[-] apport-symptoms.list
[edit]
[-] fontconfig-config.postrm
[edit]
[-] ubuntu-advantage-tools.md5sums
[edit]
[-] python3-constantly.postinst
[edit]
[-] bzip2.list
[edit]
[-] libgdbm6:amd64.shlibs
[edit]
[-] libjs-sphinxdoc.md5sums
[edit]
[-] ssh-import-id.prerm
[edit]
[-] php7.4-cli.triggers
[edit]
[-] telnet.postrm
[edit]
[-] python3-apt.postinst
[edit]
[-] libnetplan0:amd64.symbols
[edit]
[-] gsettings-desktop-schemas.list
[edit]
[-] php7.4-zip.md5sums
[edit]
[-] parted.md5sums
[edit]
[-] libmail-sendmail-perl.list
[edit]
[-] php8.0-gd.preinst
[edit]
[-] mount.md5sums
[edit]
[-] linux-image-5.15.0-1066-aws.list
[edit]
[-] mime-support.conffiles
[edit]
[-] libdns-export1109.shlibs
[edit]
[-] linux-modules-5.4.0-1045-aws.postinst
[edit]
[-] libutempter0:amd64.list
[edit]
[-] passwd.prerm
[edit]
[-] apt.prerm
[edit]
[-] libss2:amd64.triggers
[edit]
[-] microcode-initrd.triggers
[edit]
[-] libstdc++6:amd64.prerm
[edit]
[-] liblua5.2-0:amd64.md5sums
[edit]
[-] php-pear.preinst
[edit]
[-] linux-image-5.11.0-1020-aws.postrm
[edit]
[-] libheimntlm0-heimdal:amd64.triggers
[edit]
[-] libfl2:amd64.symbols
[edit]
[-] libisc-export1105:amd64.list
[edit]
[-] linux-aws-5.15-headers-5.15.0-1081.md5sums
[edit]
[-] fakeroot.postinst
[edit]
[-] linux-image-5.11.0-1017-aws.postrm
[edit]
[-] libcryptsetup12:amd64.symbols
[edit]
[-] open-vm-tools.md5sums
[edit]
[-] python3-lazr.uri.postinst
[edit]
[-] linux-modules-5.8.0-1041-aws.postrm
[edit]
[-] python3-jinja2.prerm
[edit]
[-] kmod.postrm
[edit]
[-] at.postinst
[edit]
[-] mariadb-server.list
[edit]
[-] locales.prerm
[edit]
[-] python3.postrm
[edit]
[-] python3-cryptography.md5sums
[edit]
[-] linux-image-5.15.0-1066-aws.postrm
[edit]
[-] fdisk.list
[edit]
[-] liblmdb0:amd64.symbols
[edit]
[-] gir1.2-packagekitglib-1.0.list
[edit]
[-] liblvm2cmd2.03:amd64.md5sums
[edit]
[-] libnss-systemd:amd64.postrm
[edit]
[-] php-mbstring.list
[edit]
[-] libdebconfclient0:amd64.triggers
[edit]
[-] strace.list
[edit]
[-] initramfs-tools-bin.list
[edit]
[-] linux-modules-5.15.0-1021-aws.postrm
[edit]
[-] m4.md5sums
[edit]
[-] openssh-client.postinst
[edit]
[-] lsb-base.preinst
[edit]
[-] libudev1:amd64.triggers
[edit]
[-] passwd.postinst
[edit]
[-] unattended-upgrades.md5sums
[edit]
[-] php8.0-mysql.list
[edit]
[-] vim-tiny.postinst
[edit]
[-] libpolkit-agent-1-0:amd64.list
[edit]
[-] libglib2.0-0:amd64.postinst
[edit]
[-] keyboard-configuration.postrm
[edit]
[-] xz-utils.prerm
[edit]
[-] udev.prerm
[edit]
[-] linux-image-5.15.0-1044-aws.list
[edit]
[-] keyboard-configuration.postinst
[edit]
[-] linux-image-5.15.0-1073-aws.list
[edit]
[-] liblsan0:amd64.md5sums
[edit]
[-] libwind0-heimdal:amd64.symbols
[edit]
[-] python3-oauthlib.list
[edit]
[-] libglib2.0-0:amd64.md5sums
[edit]
[-] libassuan0:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1056-aws.list
[edit]
[-] command-not-found.md5sums
[edit]
[-] libcc1-0:amd64.triggers
[edit]
[-] python3-attr.list
[edit]
[-] btrfs-progs.postrm
[edit]
[-] g++-9.list
[edit]
[-] libdevmapper-event1.02.1:amd64.triggers
[edit]
[-] php8.0-opcache.md5sums
[edit]
[-] dmeventd.md5sums
[edit]
[-] libgnutls30:amd64.shlibs
[edit]
[-] snapd.md5sums
[edit]
[-] linux-base.md5sums
[edit]
[-] libkmod2:amd64.symbols
[edit]
[-] libwind0-heimdal:amd64.list
[edit]
[-] libyaml-0-2:amd64.triggers
[edit]
[-] git-man.md5sums
[edit]
[-] liblvm2cmd2.03:amd64.shlibs
[edit]
[-] msodbcsql17.postinst
[edit]
[-] apache2-utils.list
[edit]
[-] libitm1:amd64.triggers
[edit]
[-] ucf.preinst
[edit]
[-] libdconf1:amd64.symbols
[edit]
[-] libmagic1:amd64.conffiles
[edit]
[-] libpolkit-agent-1-0:amd64.symbols
[edit]
[-] libexpat1:amd64.shlibs
[edit]
[-] libfreetype6:amd64.triggers
[edit]
[-] libip6tc2:amd64.md5sums
[edit]
[-] python3-zope.interface.md5sums
[edit]
[-] python3-hamcrest.list
[edit]
[-] libdconf1:amd64.shlibs
[edit]
[-] python3-hyperlink.md5sums
[edit]
[-] libdevmapper-event1.02.1:amd64.shlibs
[edit]
[-] vim-common.md5sums
[edit]
[-] python3-json-pointer.postrm
[edit]
[-] klibc-utils.postinst
[edit]
[-] libss2:amd64.list
[edit]
[-] python3-idna.postinst
[edit]
[-] linux-modules-5.13.0-1019-aws.list
[edit]
[-] bolt.md5sums
[edit]
[-] man-db.md5sums
[edit]
[-] libaprutil1:amd64.symbols
[edit]
[-] debhelper.md5sums
[edit]
[-] python3-blinker.list
[edit]
[-] libcrypt-dev:amd64.list
[edit]
[-] libasn1-8-heimdal:amd64.triggers
[edit]
[-] linux-modules-5.13.0-1017-aws.postrm
[edit]
[-] debconf.prerm
[edit]
[-] libisns0:amd64.symbols
[edit]
[-] libmysqlclient21:amd64.symbols
[edit]
[-] libpolkit-agent-1-0:amd64.triggers
[edit]
[-] openssh-server.preinst
[edit]
[-] irqbalance.postinst
[edit]
[-] libcap2:amd64.md5sums
[edit]
[-] python3-click.list
[edit]
[-] format
[edit]
[-] libcap2:amd64.symbols
[edit]
[-] libfwupd2:amd64.md5sums
[edit]
[-] libsoup2.4-1:amd64.triggers
[edit]
[-] networkd-dispatcher.md5sums
[edit]
[-] libmagic-mgc.md5sums
[edit]
[-] apport-symptoms.md5sums
[edit]
[-] php-phpmyadmin-sql-parser.md5sums
[edit]
[-] screen.prerm
[edit]
[-] libcurl4:amd64.shlibs
[edit]
[-] libxslt1.1:amd64.md5sums
[edit]
[-] python3-debian.prerm
[edit]
[-] amd64-microcode.list
[edit]
[-] libheimntlm0-heimdal:amd64.shlibs
[edit]
[-] odbcinst.postinst
[edit]
[-] python3-jsonschema.md5sums
[edit]
[-] linux-modules-5.11.0-1027-aws.postrm
[edit]
[-] libcroco3:amd64.shlibs
[edit]
[-] linux-modules-5.15.0-1063-aws.postrm
[edit]
[-] linux-image-5.13.0-1025-aws.list
[edit]
[-] libasound2:amd64.symbols
[edit]
[-] python3-simplejson.list
[edit]
[-] libyaml-0-2:amd64.list
[edit]
[-] zerofree.list
[edit]
[-] libjson-glib-1.0-0:amd64.list
[edit]
[-] adduser.postrm
[edit]
[-] python3-debconf.prerm
[edit]
[-] openssh-server.postinst
[edit]
[-] dirmngr.prerm
[edit]
[-] libarchive-zip-perl.md5sums
[edit]
[-] libgdbm-compat4:amd64.triggers
[edit]
[-] lxd-agent-loader.postrm
[edit]
[-] python3-jwt.md5sums
[edit]
[-] libuuid1:amd64.shlibs
[edit]
[-] linux-modules-5.15.0-1056-aws.postrm
[edit]
[-] unattended-upgrades.prerm
[edit]
[-] libhcrypto4-heimdal:amd64.triggers
[edit]
[-] sg3-utils-udev.postrm
[edit]
[-] util-linux.postrm
[edit]
[-] libogg0:amd64.md5sums
[edit]
[-] libcgi-pm-perl.list
[edit]
[-] packagekit.postrm
[edit]
[-] tar.prerm
[edit]
[-] libnfnetlink0:amd64.triggers
[edit]
[-] libkmod2:amd64.triggers
[edit]
[-] ubuntu-server.list
[edit]
[-] python3.8-minimal.postrm
[edit]
[-] php-symfony-process.list
[edit]
[-] bsdutils.md5sums
[edit]
[-] libgirepository-1.0-1:amd64.shlibs
[edit]
[-] gpgsm.list
[edit]
[-] linux-image-5.15.0-1055-aws.postrm
[edit]
[-] libsqlite3-0:amd64.triggers
[edit]
[-] libutempter0:amd64.md5sums
[edit]
[-] secureboot-db.postrm
[edit]
[-] php-common.conffiles
[edit]
[-] libnetfilter-conntrack3:amd64.list
[edit]
[-] libaccountsservice0:amd64.triggers
[edit]
[-] libfdisk1:amd64.shlibs
[edit]
[-] php-twig.md5sums
[edit]
[-] login.list
[edit]
[-] dh-autoreconf.list
[edit]
[-] linux-image-5.15.0-1075-aws.postrm
[edit]
[-] python3-requests-unixsocket.prerm
[edit]
[-] linux-modules-5.11.0-1016-aws.list
[edit]
[-] libmaxminddb0:amd64.symbols
[edit]
[-] libxau6:amd64.shlibs
[edit]
[-] ec2-instance-connect.md5sums
[edit]
[-] libmpc3:amd64.triggers
[edit]
[-] update-manager-core.md5sums
[edit]
[-] iproute2.conffiles
[edit]
[-] console-setup.md5sums
[edit]
[-] cryptsetup.templates
[edit]
[-] libsasl2-2:amd64.triggers
[edit]
[-] javascript-common.md5sums
[edit]
[-] python3-incremental.prerm
[edit]
[-] libestr0:amd64.symbols
[edit]
[-] libpci3:amd64.shlibs
[edit]
[-] libcrypt1:amd64.shlibs
[edit]
[-] php-pear.postinst
[edit]
[-] libidn2-0:amd64.list
[edit]
[-] php-symfony-console.md5sums
[edit]
[-] acpid.list
[edit]
[-] libdbd-mysql-perl:amd64.list
[edit]
[-] ltrace.md5sums
[edit]
[-] libpam-cap:amd64.postinst
[edit]
[-] libxtables12:amd64.md5sums
[edit]
[-] libaprutil1-dbd-sqlite3:amd64.list
[edit]
[-] libauparse0:amd64.list
[edit]
[-] libnpth0:amd64.list
[edit]
[-] vim.prerm
[edit]
[-] sudo.postinst
[edit]
[-] linux-image-5.15.0-1051-aws.list
[edit]
[-] python3-lazr.restfulclient.list
[edit]
[-] automake.md5sums
[edit]
[-] libasound2:amd64.triggers
[edit]
[-] php8.0-xml.triggers
[edit]
[-] libpcap0.8:amd64.symbols
[edit]
[-] python3-markupsafe.list
[edit]
[-] libdconf1:amd64.triggers
[edit]
[-] finalrd.md5sums
[edit]
[-] php8.0-opcache.postrm
[edit]
[-] linux-image-5.11.0-1016-aws.list
[edit]
[-] dpkg-dev.conffiles
[edit]
[-] socat.md5sums
[edit]
[-] libkeyutils1:amd64.md5sums
[edit]
[-] packagekit.conffiles
[edit]
[-] libnettle7:amd64.triggers
[edit]
[-] ufw.md5sums
[edit]
[-] fonts-ubuntu-console.md5sums
[edit]
[-] libevent-2.1-7:amd64.list
[edit]
[-] mariadb-client-10.3.list
[edit]
[-] linux-image-5.15.0-1067-aws.list
[edit]
[-] mdadm.conffiles
[edit]
[-] fonts-ubuntu-console.list
[edit]
[-] libsoup2.4-1:amd64.shlibs
[edit]
[-] linux-aws.list
[edit]
[-] vim-common.list
[edit]
[-] python3-wadllib.list
[edit]
[-] linux-modules-5.15.0-1058-aws.list
[edit]
[-] ntfs-3g.list
[edit]
[-] fonts-dejavu-core.list
[edit]
[-] php-phpmyadmin-motranslator.list
[edit]
[-] libslang2:amd64.list
[edit]
[-] libinotifytools0:amd64.triggers
[edit]
[-] linux-image-5.15.0-1080-aws.postrm
[edit]
[-] cryptsetup-run.list
[edit]
[-] libpipeline1:amd64.shlibs
[edit]
[-] uuid-runtime.postrm
[edit]
[-] python3-openssl.md5sums
[edit]
[-] libreadline5:amd64.md5sums
[edit]
[-] mariadb-server-10.3.md5sums
[edit]
[-] liblocale-gettext-perl.md5sums
[edit]
[-] linux-modules-5.15.0-1084-aws.postinst
[edit]
[-] libmspack0:amd64.symbols
[edit]
[-] zlib1g:amd64.md5sums
[edit]
[-] libroken18-heimdal:amd64.shlibs
[edit]
[-] libtiff5:amd64.shlibs
[edit]
[-] linux-image-5.15.0-1081-aws.postinst
[edit]
[-] dbus.preinst
[edit]
[-] mdadm.prerm
[edit]
[-] python3-automat.md5sums
[edit]
[-] procps.prerm
[edit]
[-] liblocale-gettext-perl.list
[edit]
[-] logrotate.preinst
[edit]
[-] libtdb1:amd64.shlibs
[edit]
[-] initramfs-tools.md5sums
[edit]
[-] python3-dbus.md5sums
[edit]
[-] netbase.conffiles
[edit]
[-] finalrd.postrm
[edit]
[-] odbcinst.list
[edit]
[-] sysvinit-utils.list
[edit]
[-] libodbc1:amd64.shlibs
[edit]
[-] libslang2:amd64.symbols
[edit]
[-] unixodbc.list
[edit]
[-] libnftnl11:amd64.shlibs
[edit]
[-] ec2-hibinit-agent.postinst
[edit]
[-] cron.prerm
[edit]
[-] linux-image-5.15.0-1056-aws.postrm
[edit]
[-] plymouth.list
[edit]
[-] php7.4-bcmath.md5sums
[edit]
[-] libelf1:amd64.triggers
[edit]
[-] libdbus-1-3:amd64.list
[edit]
[-] dash.postinst
[edit]
[-] cryptsetup.prerm
[edit]
[-] vim-common.conffiles
[edit]
[-] php-psr-cache.md5sums
[edit]
[-] python3-zipp.prerm
[edit]
[-] cryptsetup-initramfs.md5sums
[edit]
[-] e2fsprogs.prerm
[edit]
[-] linux-image-5.15.0-1065-aws.postrm
[edit]
[-] open-iscsi.triggers
[edit]
[-] ec2-hibinit-agent.list
[edit]
[-] php-twig.list
[edit]
[-] php7.4-json.triggers
[edit]
[-] linux-image-5.13.0-1023-aws.list
[edit]
[-] libcc1-0:amd64.list
[edit]
[-] libwrap0:amd64.md5sums
[edit]
[-] linux-image-5.15.0-1058-aws.list
[edit]
[-] ubuntu-release-upgrader-core.list
[edit]
[-] perl.md5sums
[edit]
[-] pollinate.conffiles
[edit]
[-] iputils-tracepath.postinst
[edit]
[-] unzip.postrm
[edit]
[-] libitm1:amd64.list
[edit]
[-] cpp.prerm
[edit]
[-] debconf.postrm
[edit]
[-] python3-pkg-resources.list
[edit]
[-] libaudit1:amd64.md5sums
[edit]
[-] alsa-topology-conf.md5sums
[edit]
[-] run-one.md5sums
[edit]
[-] php7.4-xml.postinst
[edit]
[-] libplymouth5:amd64.symbols
[edit]
[-] grep.md5sums
[edit]
[-] libhogweed5:amd64.shlibs
[edit]
[-] systemd-timesyncd.prerm
[edit]
[-] linux-image-5.13.0-1023-aws.postrm
[edit]
[-] lz4.md5sums
[edit]
[-] make.md5sums
[edit]
[-] libkeyutils1:amd64.list
[edit]
[-] libip4tc2:amd64.triggers
[edit]
[-] linux-modules-5.15.0-1073-aws.postrm
[edit]
[-] libc6:amd64.list
[edit]
[-] libarchive13:amd64.shlibs
[edit]
[-] libtsan0:amd64.symbols
[edit]
[-] libjson-glib-1.0-0:amd64.shlibs
[edit]
[-] php7.4-sqlite3.postinst
[edit]
[-] mysql-common.prerm
[edit]
[-] php8.0-cli.postrm
[edit]
[-] vim-runtime.md5sums
[edit]
[-] libasound2-data.list
[edit]
[-] linux-image-5.15.0-1021-aws.list
[edit]
[-] linux-modules-5.15.0-1070-aws.list
[edit]
[-] fuse.postinst
[edit]
[-] php7.4-curl.preinst
[edit]
[-] libxmlsec1-openssl:amd64.md5sums
[edit]
[-] linux-image-5.13.0-1028-aws.postrm
[edit]
[-] libfastjson4:amd64.list
[edit]
[-] libcom-err2:amd64.shlibs
[edit]
[-] libassuan0:amd64.md5sums
[edit]
[-] linux-modules-5.15.0-1081-aws.md5sums
[edit]
[-] libseccomp2:amd64.md5sums
[edit]
[-] libtinfo6:amd64.list
[edit]
[-] openssh-server.conffiles
[edit]
[-] libargon2-1:amd64.symbols
[edit]
[-] dbus.postinst
[edit]
[-] libgudev-1.0-0:amd64.shlibs
[edit]
[-] linux-modules-5.15.0-1030-aws.list
[edit]
[-] libcgi-fast-perl.list
[edit]
[-] libpackagekit-glib2-18:amd64.md5sums
[edit]
[-] python3-pyrsistent:amd64.postinst
[edit]
[-] php-xml.md5sums
[edit]
[-] intel-microcode.postinst
[edit]
[-] linux-modules-5.15.0-1075-aws.postrm
[edit]
[-] initramfs-tools.postinst
[edit]
[-] pciutils.postrm
[edit]
[-] linux-image-5.15.0-1044-aws.postrm
[edit]
[-] libgcrypt20:amd64.symbols
[edit]
[-] ubuntu-advantage-tools.preinst
[edit]
[-] libjson-glib-1.0-0:amd64.symbols
[edit]
[-] php7.4-cli.prerm
[edit]
[-] libgstreamer1.0-0:amd64.md5sums
[edit]
[-] cpio.list
[edit]
[-] libkrb5support0:amd64.md5sums
[edit]
[-] php8.0-curl.postinst
[edit]
[-] libfdisk1:amd64.list
[edit]
[-] git.list
[edit]
[-] libncursesw6:amd64.symbols
[edit]
[-] ubuntu-advantage-tools.config
[edit]
[-] readline-common.list
[edit]
[-] cryptsetup-initramfs.templates
[edit]
[-] openssl.md5sums
[edit]
[-] coreutils.list
[edit]
[-] libusb-1.0-0:amd64.triggers
[edit]
[-] tmux.prerm
[edit]
[-] pkg-config.list
[edit]
[-] libssl1.1:amd64.shlibs
[edit]
[-] php7.4-opcache.postinst
[edit]
[-] php7.4-mysql.triggers
[edit]
[-] liblmdb0:amd64.md5sums
[edit]
[-] linux-headers-5.15.0-1081-aws.postinst
[edit]
[-] libtext-iconv-perl.md5sums
[edit]
[-] php7.4-fpm.postrm
[edit]
[-] libauparse0:amd64.triggers
[edit]
[-] auditd.postinst
[edit]
[-] util-linux.md5sums
[edit]
[-] bolt.postrm
[edit]
[-] libheimntlm0-heimdal:amd64.list
[edit]
[-] libcanberra0:amd64.list
[edit]
[-] netcat-openbsd.list
[edit]
[-] python3-certifi.postinst
[edit]
[-] openssh-server.templates
[edit]
[-] libpython3.8-minimal:amd64.postrm
[edit]
[-] procps.postrm
[edit]
[-] libfl2:amd64.triggers
[edit]
[-] python3-cffi-backend.list
[edit]
[-] networkd-dispatcher.prerm
[edit]
[-] libapache2-mod-fcgid.postinst
[edit]
[-] libpam-runtime.postinst
[edit]
[-] ssh-import-id.postinst
[edit]
[-] python3-requests.postinst
[edit]
[-] python3-distro-info.postinst
[edit]
[-] libkrb5support0:amd64.symbols
[edit]
[-] libsodium23:amd64.triggers
[edit]
[-] libzip4:amd64.list
[edit]
[-] libsgutils2-2.md5sums
[edit]
[-] php8.0-zip.prerm
[edit]
[-] python3-secretstorage.list
[edit]
[-] libsmbios-c2.list
[edit]
[-] libpcre2-16-0:amd64.triggers
[edit]
[-] linux-image-5.15.0-1053-aws.postrm
[edit]
[-] psmisc.postrm
[edit]
[-] php-composer-semver.list
[edit]
[-] linux-modules-5.13.0-1019-aws.postrm
[edit]
[-] libmpfr6:amd64.md5sums
[edit]
[-] linux-image-5.13.0-1029-aws.postrm
[edit]
[-] libdrm2:amd64.triggers
[edit]
[-] keyboard-configuration.list
[edit]
[-] python3-incremental.md5sums
[edit]
[-] php7.4-gd.md5sums
[edit]
[-] curl.list
[edit]
[-] initramfs-tools.preinst
[edit]
[-] dpkg.conffiles
[edit]
[-] busybox-static.md5sums
[edit]
[-] cloud-guest-utils.list
[edit]
[-] linux-image-5.15.0-1084-aws.preinst
[edit]
[-] libcurl3-gnutls:amd64.triggers
[edit]
[-] libquadmath0:amd64.shlibs
[edit]
[-] fwupd-signed.md5sums
[edit]
[-] linux-image-5.15.0-1081-aws.triggers
[edit]
[-] dbconfig-common.preinst
[edit]
[-] libapt-pkg6.0:amd64.symbols
[edit]
[-] libsnappy1v5:amd64.shlibs
[edit]
[-] linux-modules-5.15.0-1053-aws.postrm
[edit]
[-] linux-modules-5.13.0-1022-aws.postrm
[edit]
[-] python3-distutils.prerm
[edit]
[-] libgcc-s1:amd64.shlibs
[edit]
[-] python3-six.md5sums
[edit]
[-] zlib1g:amd64.triggers
[edit]
[-] ntfs-3g.postinst
[edit]
[-] multipath-tools.postinst
[edit]
[-] multipath-tools.conffiles
[edit]
[-] acpid.preinst
[edit]
[-] libpython3.8:amd64.triggers
[edit]
[-] dconf-service.md5sums
[edit]
[-] linux-modules-5.15.0-1034-aws.postrm
[edit]
[-] procps.postinst
[edit]
[-] python3-wadllib.postinst
[edit]
[-] libeatmydata1:amd64.symbols
[edit]
[-] php-composer-spdx-licenses.md5sums
[edit]
[-] libattr1:amd64.shlibs
[edit]
[-] kbd.list
[edit]
[-] linux-headers-5.15.0-1084-aws.list
[edit]
[-] grub2-common.list
[edit]
[-] php8.0-cli.postinst
[edit]
[-] php8.0-mbstring.postinst
[edit]
[-] libbinutils:amd64.triggers
[edit]
[-] ncurses-term.list
[edit]
[-] libcroco3:amd64.symbols
[edit]
[-] libffi7:amd64.list
[edit]
[-] linux-modules-5.15.0-1039-aws.list
[edit]
[-] mdadm.templates
[edit]
[-] python3-setuptools.list
[edit]
[-] python3-netifaces.list
[edit]
[-] logrotate.prerm
[edit]
[-] xz-utils.postinst
[edit]
[-] python3-gi.prerm
[edit]
[-] grub-pc.md5sums
[edit]
[-] php8.0-readline.triggers
[edit]
[-] gzip.md5sums
[edit]
[-] libestr0:amd64.shlibs
[edit]
[-] snapd.postinst
[edit]
[-] linux-image-5.15.0-1047-aws.postrm
[edit]
[-] amd64-microcode.postrm
[edit]
[-] libacl1:amd64.triggers
[edit]
[-] python3-chardet.prerm
[edit]
[-] libpcre2-8-0:amd64.triggers
[edit]
[-] automake.prerm
[edit]
[-] linux-image-5.8.0-1041-aws.postrm
[edit]
[-] libgpg-error0:amd64.list
[edit]
[-] libxext6:amd64.shlibs
[edit]
[-] screen.postinst
[edit]
[-] odbcinst.postrm
[edit]
[-] thin-provisioning-tools.postrm
[edit]
[-] ufw.list
[edit]
[-] libpcap0.8:amd64.triggers
[edit]
[-] libksba8:amd64.triggers
[edit]
[-] rsyslog.list
[edit]
[-] overlayroot.postrm
[edit]
[-] e2fsprogs.conffiles
[edit]
[-] linux-image-5.15.0-1069-aws.list
[edit]
[-] libnpth0:amd64.md5sums
[edit]
[-] lsb-release.md5sums
[edit]
[-] perl-base.prerm
[edit]
[-] pciutils.postinst
[edit]
[-] libapache2-mod-php8.0.triggers
[edit]
[-] php7.4-mysql.postinst
[edit]
[-] php7.4-curl.postinst
[edit]
[-] dwz.list
[edit]
[-] linux-image-5.15.0-1035-aws.postrm
[edit]
[-] libaudit-common.conffiles
[edit]
[-] python3-constantly.prerm
[edit]
[-] libmagic1:amd64.md5sums
[edit]
[-] python3-systemd.list
[edit]
[-] libodbc1:amd64.postrm
[edit]
[-] libvorbis0a:amd64.md5sums
[edit]
[-] diffutils.list
[edit]
[-] g++.md5sums
[edit]
[-] libnetplan0:amd64.shlibs
[edit]
[-] glib-networking:amd64.md5sums
[edit]
[-] policykit-1.conffiles
[edit]
[-] libarchive-cpio-perl.list
[edit]
[-] python3-twisted-bin:amd64.list
[edit]
[-] libbinutils:amd64.md5sums
[edit]
[-] libdevmapper-event1.02.1:amd64.md5sums
[edit]
[-] cryptsetup.preinst
[edit]
[-] libxslt1.1:amd64.symbols
[edit]
[-] php8.0-curl.prerm
[edit]
[-] libtiff5:amd64.symbols
[edit]
[-] libheimntlm0-heimdal:amd64.symbols
[edit]
[-] info.prerm
[edit]
[-] software-properties-common.conffiles
[edit]
[-] ncurses-base.md5sums
[edit]
[-] linux-image-5.4.0-1045-aws.postinst
[edit]
[-] popularity-contest.conffiles
[edit]
[-] g++-9.md5sums
[edit]
[-] libapr1:amd64.md5sums
[edit]
[-] libsepol1:amd64.md5sums
[edit]
[-] libpci3:amd64.triggers
[edit]
[-] cryptsetup-initramfs.postinst
[edit]
[-] libdb5.3:amd64.triggers
[edit]
[-] ucf.md5sums
[edit]
[-] pkg-config.postinst
[edit]
[-] linux-modules-5.15.0-1082-aws.list
[edit]
[-] libwind0-heimdal:amd64.shlibs
[edit]
[-] ufw.prerm
[edit]
[-] libseccomp2:amd64.triggers
[edit]
[-] byobu.conffiles
[edit]
[-] libtimedate-perl.list
[edit]
[-] php7.4-mbstring.md5sums
[edit]
[-] init-system-helpers.md5sums
[edit]
[-] g++.list
[edit]
[-] linux-image-5.4.0-1045-aws.prerm
[edit]
[-] libapt-pkg6.0:amd64.md5sums
[edit]
[-] ubuntu-keyring.md5sums
[edit]
[-] linux-image-5.15.0-1062-aws.postrm
[edit]
[-] ufw.config
[edit]
[-] mime-support.triggers
[edit]
[-] libatm1:amd64.triggers
[edit]
[-] accountsservice.postinst
[edit]
[-] libncursesw6:amd64.md5sums
[edit]
[-] libdrm2:amd64.symbols
[edit]
[-] fontconfig-config.conffiles
[edit]
[-] gnupg.md5sums
[edit]
[-] grub-common.preinst
[edit]
[-] grub-common.md5sums
[edit]
[-] python3-serial.prerm
[edit]
[-] libmspack0:amd64.md5sums
[edit]
[-] libglib2.0-0:amd64.symbols
[edit]
[-] cryptsetup.list
[edit]
[-] cron.postinst
[edit]
[-] coreutils.postrm
[edit]
[-] libpcre2-16-0:amd64.shlibs
[edit]
[-] libmpdec2:amd64.shlibs
[edit]
[-] linux-base.conffiles
[edit]
[-] libncursesw6:amd64.list
[edit]
[-] libaio1:amd64.shlibs
[edit]
[-] file.md5sums
[edit]
[-] linux-modules-5.11.0-1020-aws.postrm
[edit]
[-] dbconfig-common.config
[edit]
[-] ca-certificates.list
[edit]
[-] linux-image-5.15.0-1053-aws.list
[edit]
[-] libgdbm-compat4:amd64.shlibs
[edit]
[-] libsmbios-c2.triggers
[edit]
[-] libmagic1:amd64.shlibs
[edit]
[-] xxd.md5sums
[edit]
[-] openssh-client.prerm
[edit]
[-] python3-markupsafe.postinst
[edit]
[-] php8.0-zip.md5sums
[edit]
[-] sudo.list
[edit]
[-] base-passwd.postinst
[edit]
[-] libbrotli1:amd64.symbols
[edit]
[-] linux-image-5.15.0-1034-aws.postrm
[edit]
[-] libfakeroot:amd64.conffiles
[edit]
[-] python3-attr.prerm
[edit]