Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
phlipper committed Apr 18, 2012
0 parents commit 48337bb
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
*.tgz
*.tar.gz
vendor/bundle
.bundle
.DS_Store
build/*
20 changes: 20 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright © 2012 Phil Cohen <github@phlippers.net>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
48 changes: 48 additions & 0 deletions README.md
@@ -0,0 +1,48 @@
# DESCRIPTION

Installs `traceroute` The `traceroute` utility displays the route used by IP packets on their way to a specified network (or Internet) host.


# REQUIREMENTS

## Supported Platforms

The following platforms are supported by this cookbook, meaning that the recipes run on these platforms without error:

* Ubuntu
* Debian

# RECIPES

* `traceroute` - The default recipe.

# USAGE

This cookbook installs the traceroute components if not present, and pulls updates if they are installed on the system.

# ATTRIBUTES

None


## Basic Settings

None


## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request


## License

**chef-traceroute**

* Freely distributable and licensed under the [MIT license](http://phlipper.mit-license.org/2012/license.html).
* Copyright (c) 2012 Phil Cohen (github@phlippers.net) [![endorse](http://api.coderwall.com/phlipper/endorsecount.png)](http://coderwall.com/phlipper)
* http://phlippers.net/
13 changes: 13 additions & 0 deletions metadata.rb
@@ -0,0 +1,13 @@
name "traceroute"
maintainer "Phil Cohen"
maintainer_email "github@phlippers.net"
license "MIT"
description "Installs traceroute"
long_description IO.read(File.join(File.dirname(__FILE__), "README.md"))
version "1.0.0"

recipe "traceroute", "Installs traceroute"

%w[debian ubuntu].each do |os|
supports os
end
8 changes: 8 additions & 0 deletions recipes/default.rb
@@ -0,0 +1,8 @@
#
# Cookbook Name:: traceroute
# Recipe:: default
#
# Copyright 2012, Phil Cohen
#

package "traceroute"

0 comments on commit 48337bb

Please sign in to comment.