Anyone have an answer for this? I didn't find anything in the README or online documentation.
Today, the unattended-upgrades utility upgraded the linux-image-2.6.28-19-server package on one of my servers. In my 50unattended-upgrades file, I have this:// Automatically upgrade packages from these (origin, archive) pairs
Unattended-Upgrade::Allowed-Origins {
"Ubuntu jaunty-security";
"Ubuntu jaunty-updates";
};
// List of packages to not update
Unattended-Upgrade::Package-Blacklist {
"linux-server";
"linux-image-server";
"linux-restricted-modules-common";
"linux-restricted-modules-server";
"linux-libc-dev";
"linux-firmware";
"linux-generic";
"linux-image-generic";
// "vim";
"libc6";
"libc6-dev";
"libc6-i386";
};
Since the package name for some of the blacklisted packages will change, I'd like to be able to use regexes so that I can blacklist things like "linux-image-.*-server" and "linux-image-.*-generic". Is this possible?
Bookmarks