Skip to content

Commit

Permalink
Ubuntu 14.04 LTS (Trusty Tahr) support
Browse files Browse the repository at this point in the history
  • Loading branch information
djcp committed Apr 21, 2014
1 parent ae3983f commit cef9bd0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -24,6 +24,7 @@ terminal and then click "Install".

We support:

* [14.04: Trusty Tahr](https://wiki.ubuntu.com/TrustyTahr/ReleaseNotes),
* [13.10: Saucy Salamander](https://wiki.ubuntu.com/SaucySalamander/ReleaseNotes),
* [12.04 LTS: Precise Pangolin](https://wiki.ubuntu.com/PrecisePangolin/ReleaseNotes),
* Debian stable (currently [wheezy](http://www.debian.org/releases/stable/)).
Expand Down
2 changes: 1 addition & 1 deletion linux
Expand Up @@ -32,7 +32,7 @@ fancy_echo() {
}
### end common-components/shared-functions

if ! grep -qiE 'wheezy|jessie|saucy|precise' /etc/os-release; then
if ! grep -qiE 'wheezy|jessie|precise|saucy|trusty' /etc/os-release; then
fancy_echo "Sorry! we don't currently support that distro."
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion linux-components/distro-check
@@ -1,4 +1,4 @@
if ! grep -qiE 'wheezy|jessie|saucy|precise' /etc/os-release; then
if ! grep -qiE 'wheezy|jessie|precise|saucy|trusty' /etc/os-release; then
fancy_echo "Sorry! we don't currently support that distro."
exit 1
fi
9 changes: 9 additions & 0 deletions test/Vagrantfile.ubuntu-14-04-server
@@ -0,0 +1,9 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure('2') do |config|
name = 'ubuntu-14-04-server'
config.vm.box = "thoughtbot/#{name}"
config.vm.provider :virtualbox do |virtualbox|
virtualbox.name = "laptop-#{name}"
end
end

0 comments on commit cef9bd0

Please sign in to comment.