Initial commit
This commit is contained in:
commit
6e9d0465bc
9 changed files with 90 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
pkg/
|
11
Modulefile
Normal file
11
Modulefile
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
name 'puppetlabs-stdlib'
|
||||||
|
version '0.1.1'
|
||||||
|
source 'git://github.com/puppetlabs/puppetlabs-stdlib'
|
||||||
|
author 'puppetlabs'
|
||||||
|
license 'Apache'
|
||||||
|
summary 'Puppet Module Standard Library'
|
||||||
|
description 'Standard Library for Puppet Modules'
|
||||||
|
project_page 'https://github.com/puppetlabs/puppetlabs-stdlib'
|
||||||
|
|
||||||
|
## Add dependencies, if any:
|
||||||
|
# dependency 'username/name', '>= 1.2.0'
|
24
README.markdown
Normal file
24
README.markdown
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Puppet Labs Standard Library #
|
||||||
|
|
||||||
|
This module provides a "standard library" of resources for developing Puppet
|
||||||
|
Modules. This modules will include the following additions to Puppet
|
||||||
|
|
||||||
|
* Stages
|
||||||
|
* Functions
|
||||||
|
* Types
|
||||||
|
* Providers
|
||||||
|
* Defined resource types
|
||||||
|
|
||||||
|
This module is officially curated and provided by Puppet Labs. The modules
|
||||||
|
Puppet Labs writes and distributes will make heavy use of this standard
|
||||||
|
library.
|
||||||
|
|
||||||
|
# Overview #
|
||||||
|
|
||||||
|
TBA
|
||||||
|
|
||||||
|
# Contact Information #
|
||||||
|
|
||||||
|
Jeff McCune <jeff@puppetlabs.com>
|
||||||
|
|
||||||
|
EOF
|
17
manifests/init.pp
Normal file
17
manifests/init.pp
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Class: stdlib
|
||||||
|
#
|
||||||
|
# This module manages stdlib
|
||||||
|
#
|
||||||
|
# Parameters:
|
||||||
|
#
|
||||||
|
# Actions:
|
||||||
|
#
|
||||||
|
# Requires:
|
||||||
|
#
|
||||||
|
# Sample Usage:
|
||||||
|
#
|
||||||
|
# [Remember: No empty lines between comments and class definition]
|
||||||
|
class stdlib {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
0
manifests/stages.pp
Normal file
0
manifests/stages.pp
Normal file
12
metadata.json
Normal file
12
metadata.json
Normal 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
6
spec/spec.opts
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
--format
|
||||||
|
s
|
||||||
|
--colour
|
||||||
|
--loadby
|
||||||
|
mtime
|
||||||
|
--backtrace
|
18
spec/spec_helper.rb
Normal file
18
spec/spec_helper.rb
Normal 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
1
tests/init.pp
Normal file
|
@ -0,0 +1 @@
|
||||||
|
include stdlib
|
Loading…
Reference in a new issue