From bf2601f1ea54c69ed3dbc1dfc99bfbaf1fa55de3 Mon Sep 17 00:00:00 2001 From: Chip Childers Date: Wed, 29 Aug 2012 09:20:56 -0400 Subject: [PATCH] Added steps to create a 12.04.1 Ubuntu template within VeeWee --- tools/devcloud/build_vagrant_basebox.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/devcloud/build_vagrant_basebox.sh b/tools/devcloud/build_vagrant_basebox.sh index 65dbdd9ab28..c90a6c9ba60 100755 --- a/tools/devcloud/build_vagrant_basebox.sh +++ b/tools/devcloud/build_vagrant_basebox.sh @@ -57,6 +57,8 @@ cd vagrant || error_exit bundle install || error_exit "could not bundle install vagrant" rake install || error_exit "could not rake vagrant" cd ~/builddevcloud/veewee || error_exit +cp -R templates/ubuntu-12.04-server-i386 templates/ubuntu-12.04.1-server-i386 +cp -R templates/ubuntu-12.04-server-i386-packages templates/ubuntu-12.04.1-server-i386-packages bundle install || error_exit rake install || error_exit bundle exec vagrant basebox define 'devcloudbase' 'ubuntu-12.04.1-server-i386' || error_exit "couldn't basebox define"