vagrant-lxc-ng/development/shell-provisioning/upgrade-kernel

15 lines
390 B
Plaintext
Raw Normal View History

#!/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
2013-04-12 05:06:34 +00:00
sudo apt-get install linux-image-3.5.0-27-generic linux-headers-3.5.0-27-generic -y
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y