Skip to content

Commit

Permalink
Add license info via osrcry
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Hoer committed Sep 22, 2014
1 parent 095c5c4 commit e5bfe21
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 11 deletions.
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## Getting Involved

New contributors are always welcome, when it doubt please ask questions. We strive to be an open and welcoming community. Please be nice to one another.

### Coding

* Pick a task:
* Offer feedback on open [pull requests](https://github.com/dhoer/chef-nssm/pulls).
* Review open [issues](https://github.com/dhoer/chef-nssm/issues) for things to help on.
* [Create an issue](https://github.com/dhoer/chef-nssm/issues/new) to start a discussion on additions or features.
* Fork the project, add your changes and tests to cover them in a topic branch.
* Commit your changes and rebase against `dhoer/chef-nssm` to ensure everything is up to date.
* [Submit a pull request](https://github.com/dhoer/chef-nssm/compare/).

### Non-Coding

* Offer feedback on open [issues](https://github.com/dhoer/chef-nssm/issues).
* Organize or volunteer at events.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Dennis Hoer <[email protected]>
20 changes: 20 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright (c) 2014 [CONTRIBUTORS](https://github.com/dhoer/chef-nssm/blob/master/CONTRIBUTORS.md)

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.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://travis-ci.org/dhoer/chef-nssm.svg)](https://travis-ci.org/dhoer/chef-nssm)

This cookbook installs the Non-Sucking Service Manager (http://nssm.cc), and exposes resources to `install` and `remove` Windows services.
Read [TLDR](TLDR.md) for more details about usage, chefspec matchers, and contributing.
Read [TLDR](https://github.com/dhoer/chef-nssm/blob/master/TLDR.md) for more details about usage, chefspec matchers, getting help and contributing.

## Requirements

Expand All @@ -26,7 +26,7 @@ To install a Windows service:
nssm 'service name' do
app 'java'
args [
"-jar",
'-jar',
"'C:\\path to\\my-executable.jar'"
]
action :install
Expand All @@ -37,4 +37,7 @@ To remove a Windows service:
nssm 'service name' do
action :remove
end


## License

Please refer to [LICENSE](https://github.com/dhoer/chef-nssm/blob/master/LICENSE.md).
16 changes: 8 additions & 8 deletions TLDR.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ Example Matcher Usage
NSSM Cookbook Matchers

- install_nssm_service
- remove_nssm_service
- install_nssm_service(servicename)
- remove_nssm_service(servicename)

## Getting Help

- Ask specific questions on [Stack Overflow](http://stackoverflow.com/questions/tagged/chef-nssm).
- Report bugs and discuss potential features in [Github issues](https://github.com/dhoer/chef-nssm/issues).

## Contributing

1. Fork the repository on Github
2. Create a named feature branch (like `add_component_x`)
3. Write your change
4. Write tests for your change (if applicable)
5. Run the tests, ensuring they all pass
6. Submit a Pull Request using Github
Please refer to [CONTRIBUTING](https://github.com/dhoer/chef-nssm/blob/master/CONTRIBUTING.md).
2 changes: 2 additions & 0 deletions metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.1.0'

supports 'windows'

depends 'windows'

0 comments on commit e5bfe21

Please sign in to comment.