Initial commit

This commit is contained in:
Jeff McCune
2011-05-23 18:12:37 -07:00
commit 55a2ab8b19
8 changed files with 69 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
pkg/

11
Modulefile Normal file
View File

@@ -0,0 +1,11 @@
name 'puppetlabs-java'
version '0.0.1'
source 'UNKNOWN'
author 'puppetlabs'
license 'UNKNOWN'
summary 'UNKNOWN'
description 'UNKNOWN'
project_page 'UNKNOWN'
## Add dependencies, if any:
# dependency 'username/name', '>= 1.2.0'

3
README.markdown Normal file
View File

@@ -0,0 +1,3 @@
java
This is the java module.

17
manifests/init.pp Normal file
View File

@@ -0,0 +1,17 @@
# Class: java
#
# This module manages java
#
# Parameters:
#
# Actions:
#
# Requires:
#
# Sample Usage:
#
# [Remember: No empty lines between comments and class definition]
class java {
}

12
metadata.json Normal file
View File

@@ -0,0 +1,12 @@
/*
+-----------------------------------------------------------------------+
| |
| ==> DO NOT EDIT THIS FILE! <== |
| |
| You should edit the `Modulefile` and run `puppet-module build` |
| to generate the `metadata.json` file for your releases. |
| |
+-----------------------------------------------------------------------+
*/
{}

6
spec/spec.opts Normal file
View File

@@ -0,0 +1,6 @@
--format
s
--colour
--loadby
mtime
--backtrace

18
spec/spec_helper.rb Normal file
View File

@@ -0,0 +1,18 @@
require 'pathname'
dir = Pathname.new(__FILE__).parent
$LOAD_PATH.unshift(dir, dir + 'lib', dir + '../lib')
require 'mocha'
require 'puppet'
gem 'rspec', '=1.2.9'
require 'spec/autorun'
Spec::Runner.configure do |config|
config.mock_with :mocha
end
# We need this because the RAL uses 'should' as a method. This
# allows us the same behaviour but with a different method name.
class Object
alias :must :should
end

1
tests/init.pp Normal file
View File

@@ -0,0 +1 @@
include java