https://github.com/garethr/garethr-mirageos
Puppet module to install Mirage and it's dependencies
https://github.com/garethr/garethr-mirageos
Last synced: 28 days ago
JSON representation
Puppet module to install Mirage and it's dependencies
- Host: GitHub
- URL: https://github.com/garethr/garethr-mirageos
- Owner: garethr
- License: apache-2.0
- Created: 2015-05-06T14:18:51.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-16T18:33:57.000Z (over 9 years ago)
- Last Synced: 2025-05-02T05:49:29.251Z (about 1 month ago)
- Language: Ruby
- Size: 148 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://forge.puppetlabs.com/garethr/mirageos)
[](http://travis-ci.org/garethr/garethr-mirageos)
[](https://forge.puppetlabs.com/garethr/mirageos)This Puppet module installs OCaml, relevant libraries from
[OPAM](http://opam.ocamlpro.com/) and [MirageOS](http://openmirage.org/).
This allows you to get on with building Mirage unikernels quickly.## Usage
The module is currently tested on Ubuntu 14.04 and 12.04. You can use
it like so:```puppet
include mirageos
```By default this installs Mirage as root and installs OPAM modules to
`/usr/local/opam`. This can be modified like so:```puppet
class { 'mirageos':
user => 'vagrant',
opam_root => '/home/vagrant/.opam',
}
```## A note on testing
This module features a unit and acceptance test suite. The unit tests
can be run with:```
bundle install
FUTURE_PARSER=yes bundle exec rake test
```This checks the metadata, the syntax of the puppet manifests and runs
the unit tests.In addition the module includes an acceptance testing suite using
[Test Kitchen](http://kitchen.ci/). This runs the module on Ubuntu 12.04
and 14.04, asserts that things have been installed successfully and then
compiles a unix unikernel and checks it runs successfully. This suite
can be run with:```
bundle install
bundle exec kitchen test -c=2
```