https://github.com/norm/puppet-camino
https://github.com/norm/puppet-camino
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/norm/puppet-camino
- Owner: norm
- License: mit
- Created: 2013-04-23T11:35:05.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-23T11:37:43.000Z (about 13 years ago)
- Last Synced: 2025-12-26T20:10:57.693Z (6 months ago)
- Language: Ruby
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Using this Template
Bootstrap it:
```
mkdir -p ~/src/boxen/puppet-mynewmodule
cd ~/src/boxen/puppet-mynewmodule
git init .
git remote add template https://github.com/boxen/puppet-template.git
git fetch template
git checkout -b master template/master
```
Now we're ready to make it our own!
```
script/cibuild
.bundle/binstubs/rspec-puppet-init
```
Now you'll need to edit `manifests/init.pp` and `spec/classes/template_spec.rb`
for your module.
If your module has other dependencies, be sure to update
`spec/fixtures/Puppetfile`.
From then on, you can use `script/cibuild` to run the tests.
When you're ready to push:
```
git create githubusername/puppet-mynewmodule
git push origin master
```
The rest of the README as follows can be used as a template for your module's README.
# Template Puppet Module for Boxen
An example of how we write Puppet modules for Boxen. Replace this
paragraph with a short explanation of what the heck makes your module
useful.
A great module has a working travis build
[](https://travis-ci.org/boxen/puppet-template)
## Usage
```puppet
boxen::example { 'best example ever':
salutation => 'fam'
}
```
## Required Puppet Modules
* `boxen`
* `anything-else`
## Development
Write code. Run `script/cibuild` to test it. Check the `script`
directory for other useful tools.