avoid apt autoremoval for pve-kernel packages

This commit is contained in:
Dietmar Maurer 2013-07-25 07:53:07 +02:00
parent 305c5edf2f
commit 60d3dcced9
4 changed files with 11 additions and 0 deletions

View File

@ -82,6 +82,7 @@ install: country.dat vznet.conf vzdump.conf vzdump-hook-script.pl
install -d ${DESTDIR}/var/lib/vz/template/cache
install -d ${DESTDIR}/var/lib/vz/template/iso
install -d ${DESTDIR}/var/lib/vz/template/qemu
install -D -m 0644 pve-apt.conf ${DESTDIR}/etc/apt/apt.conf.d/75pveconf
install -D -m 0644 vzdump.conf ${DESTDIR}/etc/vzdump.conf
install -D -m 0755 vznet.conf ${DESTDIR}/etc/vz/vznet.conf
install -m 0644 vzdump-hook-script.pl ${DOCDIR}/examples/vzdump-hook-script.pl

View File

@ -3,6 +3,8 @@ pve-manager (3.0-36) unstable; urgency=low
* fix proxy loop assertion for spiceproxy
* pveproxy: use same cipher list as debian apache ssl.conf
* avoid apt autoremoval for pve-kernel packages
-- Proxmox Support Team <support@proxmox.com> Wed, 24 Jul 2013 12:43:38 +0200

1
debian/conffiles vendored
View File

@ -9,3 +9,4 @@
/etc/vz/vznet.conf
/etc/vzdump.conf
/etc/logrotate.d/pve
/etc/apt/apt.conf.d/75pveconf

7
pve-apt.conf Normal file
View File

@ -0,0 +1,7 @@
APT
{
NeverAutoRemove
{
"^pve-kernel-.*";
};
}