// file  /etc/apt/apt.conf.d/51unattended-upgrades-blacklist
// part of mx-updater package
//
// Note: Do not edit this file.
// This file will be overwritten during an upgrade with the default settings.
//
Unattended-Upgrade::Package-Blacklist {
    // The following matches all packages starting with linux-
    "linux-";
    // The following matches all packages ending with -dkms
    ".*-dkms$";
    // Any swap related package
    ".*swap.*";
    // The package mdadm
    "mdadm$";
    // The package cryptsetup-initramfs
    "cryptsetup-initramfs$";
    // Virtualbox related package(s)
    ".*virtualbox.*";
    // Grub related package(s)
    ".*grub.*";
};
