Sha256: 1bf40d978d24c0452a68f4385be8467471f984563954bf6ede90cf0aee349748
Contents?: true
Size: 385 Bytes
Versions: 4
Compression:
Stored size: 385 Bytes
Contents
#!/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
Version data entries
4 entries across 4 versions & 1 rubygems