Skip to content
This repository has been archived by the owner on Oct 24, 2018. It is now read-only.
/ vagrantbox-ubuntu Public archive

(OBSOLETE. No longer maintained) A Vagrant project useful for generating a custom Vagrant base-box.

Notifications You must be signed in to change notification settings

DSpace/vagrantbox-ubuntu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Vagrantbox-Ubuntu

A basic Vagrantfile for use in customizing a generic Vagrant base box for use in DSpace development. This project mostly exists so that we can modify the /etc/apt/sources.list file to enable the mirror method of picking an appropriate deb mirror, because we DSpace developers are all over the world, and hard-coding this file for servers in the US is just plain rude.

But, also, Guest Additions!

Yes, the Virtual Box Guest Additions version number increases with each new version of Virtual Box. And, alas, most generic Vagrant base box images don't ever seem able to keep up. Darn them. One easy, though somewhat time-consuming, way to deal with this is to install the [VB Guest plugin](https://github.com/dotless-de/vagrant-vbguest).

How to use this project

Credit where credit is due, the entire idea for this project came from this article.

First run this:

vagrant up
vagrant ssh

Now you're free to modify the base box to match your needs. We recommend that you replace /etc/apt/sources.list by one of the methods listed here.

When you're done modifying the sources.list, it's a good idea to go ahead and update the packages.

sudo apt-get update
sudo apt-get upgrade
exit

If you'd like to pre-install any packages for your base image, now is the time to do so.

When you're done, exit the vagrant ssh session, and run

vboxmanage list runningvms

And look for the name that Virtual Box has given this machine, it will likely be something like this: vagrantbox-ubuntu_dspace_1387309768

Now run

vagrant package --base vagrantbox-ubuntu_dspace_1387309768 --output precise64.box

Wait for that to complete, when you have a new precise64.box all packaged up, run this:

vagrant box add precise64 precise64.box

And now, you will have your own personally-tweaked base box to use with Vagrant-DSpace, or for any Vagrant-based project that refers to a base box named "precise64".

Requirements

* [Vagrant](http://www.vagrantup.com/) * [Virtualbox](https://www.virtualbox.org/)

Optional, but highly recommended

[VB Guest plugin](https://github.com/dotless-de/vagrant-vbguest) ```sh vagrant plugin install vagrant-vbguest ```

License

This work is licensed under the [DSpace BSD 3-Clause License](http://www.dspace.org/license/), which is just a standard [BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause).

About

(OBSOLETE. No longer maintained) A Vagrant project useful for generating a custom Vagrant base-box.

Resources

Stars

Watchers

Forks

Packages

No packages published