]> git.proxmox.com Git - pve-kernel-3.10.0.git/blob - postinst.in
bump version to 3.10.0-21
[pve-kernel-3.10.0.git] / postinst.in
1 #!/usr/bin/perl -w
2
3 use strict;
4
5 # Ignore all invocations except when called on to configure.
6 exit 0 unless $ARGV[0] =~ /configure/;
7
8 # do nothing if run from proxmox installer
9 exit 0 if -e "/proxmox_install_mode";
10
11 my $imagedir = "/boot";
12
13 my $version = "@@KVNAME@@";
14
15 system("depmod $version");
16
17 system("update-initramfs -c -t -b $imagedir -k $version");
18
19 if (-x "/usr/sbin/update-grub") {
20 system("/usr/sbin/update-grub");
21 }
22
23 exit 0