vagrant-lxc-ng/development/shell-provisioning/upgrade-kernel
2013-05-06 16:08:37 -03:00

15 lines
385 B
Bash
Executable file

#!/bin/bash
set -e
if [[ `uname -r` != "3.5.0-17-generic" ]]; then
exit 0
fi
echo 'An old kernel was found on the guest machine and it will be upgraded' 1>&2
echo 'Please reload the box after provisioning when finished' 1>&2
sudo apt-get update
sudo apt-get install linux-image-3.5.0-28-generic linux-headers-3.5.0-28-generic -y
sudo apt-get upgrade -y
sudo apt-get autoremove -y