PATH:
var
/
lib
/
dpkg
/
info
#!/bin/sh set -e . /usr/share/debconf/confmodule set -f # disable pathname expansion db_capb escape # to support carriage return / multi-line values debug() { [ "${_CI_UPGRADE_DEBUG:-0}" = "0" ] && return 0 echo "$@" 1>&2 || : } update_cfg() { # takes filename, header, new object (in yaml), optionally 'remover' # and merges new into existing object in filename, and then updates file # remover a string that means "delete existing entry" python3 -c ' import sys, yaml def update(src, cand): if not (isinstance(src, dict) and isinstance(cand, dict)): return cand for k, v in cand.items(): # if the candidate has _ as value, delete source if v == REMOVER: if k in src: del src[k] continue if k not in src: src[k] = v else: src[k] = update(src[k], v) return src (fname, header, newyaml) = sys.argv[1:4] REMOVER = object if len(sys.argv) == 5: REMOVER = sys.argv[4] newcfg = yaml.load(newyaml) with open(fname, "r") as fp: cfg = yaml.load(fp) if not cfg: cfg = {} cfg = update(cfg, newcfg) with open(fname, "w") as fp: fp.write(header + "\n") fp.write(yaml.dump(cfg))' "$@" } handle_preseed_maas() { local cfg_file="/etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg" local md_url="" creds_all="" c_key="" t_key="" t_sec="" c_sec=""; db_get "cloud-init/maas-metadata-url" && md_url="$RET" || : db_get "cloud-init/maas-metadata-credentials" && creds_all="$RET" || : # nothing to do [ -n "$md_url" -o -n "$creds_all" ] || return 0 # change a url query string format into : delimited if [ -n "$creds_all" -a "${creds_all#*&}" != "${creds_all}" ]; then # the command here ends up looking like: # python3 -c '...' 'oauth_consumer_key=v1&oauth_token_key=v2...' \ # oauth_consumer_key oauth_token_key oauth_token_secret creds_all=$(python3 -c 'from six.moves.urllib.parse import parse_qs; import sys; keys = parse_qs(sys.argv[1]) for k in sys.argv[2:]: sys.stdout.write("%s:" % keys.get(k,[""])[0])' "$creds_all" \ oauth_consumer_key oauth_token_key oauth_token_secret ) fi # now, if non-empty creds_all is: consumer_key:token_key:token_secret if [ -n "$creds_all" ]; then OIFS="$IFS"; IFS=:; set -- $creds_all; IFS="$OIFS" c_key=$1; t_key=$2; t_sec=$3 fi if [ "$md_url" = "_" -a "${c_key}:${t_key}:${t_sec}" = "_:_:_" ]; then # if all these values were '_', the delete value, just delete the file. rm -f "$cfg_file" else local header="# written by cloud-init debian package per preseed entries # cloud-init/{maas-metadata-url,/maas-metadata-credentials}" local pair="" k="" v="" pload="" orig_umask="" for pair in "metadata_url:$md_url" "consumer_key:${c_key}" \ "token_key:${t_key}" "token_secret:$t_sec"; do k=${pair%%:*} v=${pair#${k}:} [ -n "$v" ] && pload="${pload} $k: \"$v\"," done # '_' would indicate "delete", otherwise, existing entries are left orig_umask=$(umask) umask 066 : >> "$cfg_file" && chmod 600 "$cfg_file" update_cfg "$cfg_file" "$header" "datasource: { MAAS: { ${pload%,} } }" _ umask ${orig_umask} fi # now clear the database of the values, as they've been consumed db_unregister "cloud-init/maas-metadata-url" || : db_unregister "cloud-init/maas-metadata-credentials" || : } handle_preseed_local_cloud_config() { local ccfg="" debconf_name="cloud-init/local-cloud-config" local cfg_file="/etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg" local header="# written by cloud-init debian package per preseed entry # $debconf_name" db_get "${debconf_name}" && ccfg="$RET" || : if [ "$ccfg" = "_" ]; then rm -f "$cfg_file" elif [ -n "$ccfg" ]; then { echo "$header"; echo "$ccfg"; } > "$cfg_file" fi db_unregister "${debconf_name}" || : } fix_1978422_redact_sensitive_logs_on_invalid_userdata_schema() { local oldver="$1" last_bad_ver="22.2-0ubuntu1~20.04.2" dpkg --compare-versions "$oldver" le "$last_bad_ver" || return 0 MSG="Redacting sensitive logs due to invalid cloud-config user-data from" REMOTE_LOG_MSG="Sensitive logs containing 'Invalid cloud-config provided:' exist in journalctl and any remote log aggregators. Please manually redact such logs as necessary." INVALID_USERDATA_LOG="Invalid cloud-config provided:$" if [ -f /var/log/cloud-init.log ]; then if grep -q "${INVALID_USERDATA_LOG}" /var/log/cloud-init.log; then echo "${MSG} /var/log/cloud-init.log" echo "${REMOTE_LOG_MSG}" # Replace generic warning about invalid user-data sed -i "s/Invalid cloud-config provided:/Invalid cloud-config provided: Please run 'sudo cloud-init schema --system' to see the schema errors./" /var/log/cloud-init.log # Redact any lines until the next DEBUG, WARNING, ERROR or Info log sed -i '/Invalid cloud-config provided:.*/,/DEBUG\|WARNING\|ERROR\|INFO\|Traceback/{/DEBUG\|WARNING\|ERROR\|INFO\|Traceback/b; /.*/d};' /var/log/cloud-init.log fi fi if [ -f /var/log/cloud-init-output.log ]; then if grep -q "${INVALID_USERDATA_LOG}" /var/log/cloud-init-output.log; then echo "${MSG} /var/log/cloud-init-output.log" # Replace generic warning about invalid user-data sed -i "s/Invalid cloud-config provided:/Invalid cloud-config provided: Please run 'sudo cloud-init schema --system' to see the schema errors./" /var/log/cloud-init-output.log # Redact any logs between Invalid cloud-config and 'Generating' or 'Cloud' log lines sed -i '/Invalid cloud-config provided:.*/,/Generating\|Cloud/{/Generating\|Cloud\|WARNING\|ERROR\|INFO\|Traceback/b; /.*/d};' /var/log/cloud-init-output.log fi fi } fix_1336855() { ### Begin fix for LP: 1336855 # fix issue where cloud-init misidentifies the location of grub and # where grub misidentifies the location of the device # if cloud-init's grub module did not run, then it did not break anything. [ -f /var/lib/cloud/instance/sem/config_grub_dpkg ] || return 0 # This bug only happened on /dev/xvda devices [ -b /dev/xvda ] || return 0 # we can't fix the system without /proc/cmdline [ -r /proc/cmdline ] || return 0 # Don't do anything unless we have grub command -v grub-install > /dev/null || return 0 # First, identify the kernel device for the parent. for parm in $(cat /proc/cmdline); do dev=$(echo $parm | awk -F\= '{print$NF}') case $parm in root=UUID*) [ -d /dev/disk/by-uuid ] && root_dev=$(readlink -f /dev/disk/by-uuid/$dev);; root=LABEL*) [ -d /dev/disk/by-label ] && root_dev=$(readlink -f /dev/disk/by-label/$dev);; root=/dev*) [ -d /dev ] && root_dev=$(readlink -f $dev);; esac [ -n "$root_dev" ] && break done # Don't continue if we don't have a root directive [ -z "$root_dev" ] && return 0 # Only deal with simple, cloud-based devices case $root_dev in /dev/vda*|/dev/xvda*|/dev/sda*) ;; *) return 0;; esac # Make sure that we are not chrooted. [ "$(stat -c %d:%i /)" != "$(stat -c %d:%i /proc/1/root/.)" ] && return 0 # Check if we are in a container, i.e. LXC if systemd-detect-virt --quiet --container || lxc-is-container 2>/dev/null; then return 0 fi # Find out where grub thinks the root device is. Only continue if # grub postinst would install/reinstall grub db_get grub-pc/install_devices && grub_cfg_dev=${RET} || return 0 db_get grub-pc/install_devices_empty && grub_dev_empty=${RET} || return 0 # Find out the parent device for the root device. # example output: sda/sda1 block_path=$(udevadm info -q path -n $root_dev | awk '-Fblock/' '{print$NF}') || return 0 # Extract the parent device name. This works where the device is a block device # example output: /dev/sda parent_dev=$(echo $block_path | awk '-F/' '$1 { if ( $1 ) {print"/dev/"$1}}') [ -b "${parent_dev}" ] || return 0 # Do nothing if the device that the grub postinst would install is already used [ "$grub_cfg_dev" = "$parent_dev" -o "$grub_cfg_dev" = "$root_dev" ] && return 0 # If we get here, do the installation echo "Reconfiguring grub install device due to mismatch (LP: #1336855)" echo " Grub should use $parent_dev but is configured for $grub_cfg_dev" db_set grub-pc/install_devices "$parent_dev" grub-install $parent_dev && echo "Reinstalled grub" || echo "WARNING! Unable to fix grub device mismatch. You may be broken." } cleanup_lp1552999() { local oldver="$1" last_bad_ver="0.7.7~bzr1178" dpkg --compare-versions "$oldver" le "$last_bad_ver" || return 0 local edir="/etc/systemd/system/multi-user.target.wants" rm -f "$edir/cloud-config.service" "$edir/cloud-final.service" \ "$edir/cloud-init-local.service" "$edir/cloud-init.service" } disable_network_config_on_upgrade() { local oldver="$1" last_without_net="0.7.7~bzr1182-0ubuntu1" if [ ! -f /var/lib/cloud/instance/obj.pkl ]; then # this is a fresh system not one that has been booted. return 0 fi if dpkg --compare-versions "$oldver" le "$last_without_net"; then echo "dpkg upgrade from $oldver" > /var/lib/cloud/data/upgraded-network fi } fix_azure_upgrade_1611074() { # adjust /etc/fstab on azure so boot after resize does not mount # /mnt as ntfs and stop re-formatting. local fixed_ver="0.7.8-49-1" dspath="/var/lib/cloud/instance/datasource" local oldver="$1" tmpf="" r="" wmsg="" me="cloud-init postinst" # if not on azure, or not booted with instance/ skip out. if [ ! -e "$dspath" ]; then debug "no $dspath" return 0 fi if ! grep -qi azure "$dspath"; then debug "not on azure per $dspath" return 0 fi # if there is no /etc/fstab, then nothing to fix. if [ ! -e /etc/fstab ]; then debug "no /etc/fstab" return 0 fi if dpkg --compare-versions "$oldver" ge "$fixed_ver"; then debug "previous version was fixed" return 0 fi wmsg="WARN: $me failed." wmsg="$wmsg Subsequent resize may not update ephemeral correctly." tmpf=$(mktemp "${TMPDIR:-/tmp}/cloud-init-upgrade.XXXXXX") || { echo "$wmsg (mktemp failed with $?)" 1>&2 return 0; } awk '{ if ($4 !~ /x-systemd.requires/ && $4 ~ /comment=cloudconfig/) { sub(/comment=cloudconfig/, "x-systemd.requires=cloud-init.service,comment=cloudconfig") } printf("%s\n", $0)}' /etc/fstab > "$tmpf" || { echo "$wmsg (awk reading of /etc/fstab failed with $?)" 1>&2 rm -f "$tmpf" return 0; } if cmp /etc/fstab "$tmpf" >/dev/null 2>&1; then debug "no changes needed." else cat "$tmpf" > /etc/fstab || { r=$? echo "$wmsg (cp $tmpf /etc/fstab failed with $r)" echo ==== expected to write the following to /etc/fstab ===== cat "$tmpf" echo ======================================================== return $r } 1>&2 echo "$me fixed /etc/fstab for x-systemd.requires" 1>&2 fi rm "$tmpf" || : } cleanup_ureadahead() { local oldver="$1" last_bad_ver="0.7.9-243-ge74d775-0ubuntu2~" dpkg --compare-versions "$oldver" le "$last_bad_ver" || return 0 dpkg-divert --package cloud-init --remove --rename --divert \ /etc/init/ureadahead.conf.disabled /etc/init/ureadahead.conf } fix_lp1889555() { local oldver="$1" last_bad_ver="20.2-45-g5f7825e2-0ubuntu1~20.04.1" dpkg --compare-versions "$oldver" le-nl "$last_bad_ver" || return 0 # if cloud-init's grub module did not run, then it did not break anything. [ -f /var/lib/cloud/instance/sem/config_grub_dpkg ] || return 0 # Don't do anything unless we have grub command -v grub-install > /dev/null || return 0 # Make sure that we are not chrooted. [ "$(stat -c %d:%i /)" != "$(stat -c %d:%i /proc/1/root/.)" ] && return 0 # Check if we are in a container, i.e. LXC if systemd-detect-virt --quiet --container || lxc-is-container 2>/dev/null; then return 0 fi # This bug only applies to NVMe devices [ -e /dev/nvme0 ] || return 0 db_get grub-pc/install_devices && grub_cfg_dev=${RET} || return 0 # If the current setting is not the (potentially-incorrect) default we # expect, this implies user intervention so leave things alone [ "$grub_cfg_dev" = "/dev/sda" ] || return 0 correct_idev="$(python3 -c "import logging; from cloudinit.config.cc_grub_dpkg import fetch_idevs; print(fetch_idevs(logging.getLogger()))")" || return 0 # If correct_idev is the empty string, we failed to determine the correct # install device; do nothing [ -z "$correct_idev" ] && return 0 # If the correct_idev is already configured, do nothing [ "$grub_cfg_dev" = "$correct_idev" ] && return 0 echo "Reconfiguring grub install device due to mismatch (LP: #1889555)" echo " grub should use $correct_idev but is configured for $grub_cfg_dev" db_set grub-pc/install_devices "$correct_idev" db_set grub-pc/install_devices_empty "false" } change_cloud_init_output_log_permissions() { # As a consequence of LP: #1918303 local oldver="$1" last_bad_ver="20.4.1-0ubuntu1~20.04.1" dpkg --compare-versions "$oldver" le-nl "$last_bad_ver" || return 0 output_file="/var/log/cloud-init-output.log" if [ -f "$output_file" ]; then if getent group adm > /dev/null; then chown root:adm $output_file else chown root $output_file fi chmod 640 $output_file fi } rename_hook_hotplug_udev_rule() { # Avoids LP: #1946003 see commit: b519d861aff8b44a0610c176cb34adcbe28df144 if [ -f /etc/udev/rules.d/10-cloud-init-hook-hotplug.rules ]; then mv -f /etc/udev/rules.d/10-cloud-init-hook-hotplug.rules \ /etc/udev/rules.d/90-cloud-init-hook-hotplug.rules fi } if [ "$1" = "configure" ]; then if db_get cloud-init/datasources; then values="$RET" if [ "${values#*MaaS}" != "${values}" ]; then # if db had old MAAS spelling, fix it. values=$(echo "$values" | sed 's,MaaS,MAAS,g') db_set cloud-init/datasources "$values" fi cat > /etc/cloud/cloud.cfg.d/90_dpkg.cfg <<EOF # to update this file, run dpkg-reconfigure cloud-init datasource_list: [ $values ] EOF fi # if there are maas settings pre-seeded apply them handle_preseed_maas # if there is generic cloud-config preseed, apply them handle_preseed_local_cloud_config # fix issue where cloud-init misidentifies the location of grub fix_1336855 # make upgrades disable network changes by cloud-init disable_network_config_on_upgrade "$2" fix_azure_upgrade_1611074 "$2" cleanup_ureadahead "$2" fix_lp1889555 "$2" change_cloud_init_output_log_permissions "$2" # Redact schema sensitive warning logs on invalid user-data fix_1978422_redact_sensitive_logs_on_invalid_userdata_schema "$2" rename_hook_hotplug_udev_rule fi # Automatically added by dh_python3: if which py3compile >/dev/null 2>&1; then py3compile -p cloud-init fi if which pypy3compile >/dev/null 2>&1; then pypy3compile -p cloud-init || true fi # End automatically added section # Automatically added by dh_systemd_enable/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask 'cloud-config.service' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'cloud-config.service'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'cloud-config.service' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'cloud-config.service' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_systemd_enable/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask 'cloud-final.service' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'cloud-final.service'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'cloud-final.service' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'cloud-final.service' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_systemd_enable/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask 'cloud-init-hotplugd.socket' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'cloud-init-hotplugd.socket'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'cloud-init-hotplugd.socket' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'cloud-init-hotplugd.socket' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_systemd_enable/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask 'cloud-init-local.service' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'cloud-init-local.service'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'cloud-init-local.service' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'cloud-init-local.service' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_systemd_enable/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # This will only remove masks created by d-s-h on package removal. deb-systemd-helper unmask 'cloud-init.service' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'cloud-init.service'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'cloud-init.service' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'cloud-init.service' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-config.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-final.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-init-blocknet.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-init-container.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-init-local.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-init-nonet.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-init.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/init/cloud-log-shutdown.conf 0.7.9-243-ge74d775-0ubuntu2~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/NetworkManager/dispatcher.d/hook-network-manager 23.3.1-0ubuntu1~ -- "$@" # End automatically added section # Automatically added by dh_installdeb/12.10ubuntu1 dpkg-maintscript-helper rm_conffile /etc/cloud/clean.d/README 24.1-0ubuntu0~20.04.1~ -- "$@" # End automatically added section if [ "$1" = "configure" ]; then oldver="$2" cleanup_lp1552999 "$oldver" fi
[+]
..
[-] 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]