-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored code and implemented updated Travis testing
- Loading branch information
1 parent
7256df3
commit 941bd85
Showing
27 changed files
with
552 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
braces: | ||
# Defaults | ||
# min-spaces-inside: 0 | ||
# max-spaces-inside: 0 | ||
|
||
# Keeping 0 min-spaces to not error on empty collection definitions | ||
min-spaces-inside: 0 | ||
# Allowing one space inside braces to improve code readability | ||
max-spaces-inside: 1 | ||
|
||
brackets: | ||
# Defaults | ||
# min-spaces-inside: 0 | ||
# max-spaces-inside: 0 | ||
|
||
# Keeping 0 min-spaces to not error on empty collection definitions | ||
min-spaces-inside: 0 | ||
# Allowing one space inside braces to improve code readability | ||
max-spaces-inside: 1 | ||
|
||
colons: | ||
# Defaults | ||
# max-spaces-before: 0 | ||
# max-spaces-after: 1 | ||
|
||
max-spaces-before: 0 | ||
# Allowing more than one space for code readability | ||
max-spaces-after: -1 | ||
|
||
comments: | ||
# Defaults | ||
# level: warning | ||
# require-starting-space: true | ||
# min-spaces-from-content: 2 | ||
|
||
# Disabling to allow for code comment blocks and #!/usr/bin/ansible-playbook | ||
require-starting-space: false | ||
|
||
indentation: | ||
# Defaults | ||
# spaces: consistent | ||
# indent-sequences: true | ||
# check-multi-line-strings: false | ||
|
||
# Requiring 2 space indentation | ||
spaces: 2 | ||
# Requiring consistent indentation within a file, either indented or not | ||
indent-sequences: consistent | ||
|
||
# Disabling due to copious amounts of long lines in the code which would | ||
# require a code style change to resolve | ||
line-length: disable | ||
|
||
truthy: disable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,46 @@ | ||
Role Name | ||
========= | ||
<!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
|
||
An [Ansible] role to install/configure [Kea DHCP] | ||
**Table of Contents** _generated with [DocToc](https://github.com/thlorenz/doctoc)_ | ||
|
||
Requirements | ||
------------ | ||
- [ansible-kea-dhcp](#ansible-kea-dhcp) | ||
- [Requirements](#requirements) | ||
- [Role Variables](#role-variables) | ||
- [Dependencies](#dependencies) | ||
- [Example Playbook](#example-playbook) | ||
- [License](#license) | ||
- [Author Information](#author-information) | ||
|
||
<!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||
|
||
# ansible-kea-dhcp | ||
|
||
An [Ansible](https://www.ansible.com) role to install/configure [Kea DHCP](http://kea.isc.org/) | ||
|
||
## Requirements | ||
|
||
None | ||
|
||
Role Variables | ||
-------------- | ||
## Role Variables | ||
|
||
[Role Defaults](defaults/main.yml) | ||
[Defaults](defaults/main.yml) | ||
|
||
Dependencies | ||
------------ | ||
## Dependencies | ||
|
||
None | ||
|
||
Example Playbook | ||
---------------- | ||
## Example Playbook | ||
|
||
[Example Playbook](./playbook.yml) | ||
|
||
License | ||
------- | ||
## License | ||
|
||
BSD | ||
MIT | ||
|
||
Author Information | ||
------------------ | ||
## Author Information | ||
|
||
Larry Smith Jr. | ||
- [@mrlesmithjr] | ||
- http://everythingshouldbevirtual.com | ||
- mrlesmithjr [at] gmail.com | ||
|
||
[@mrlesmithjr]: <https://www.twitter.com/mrlesmithjr> | ||
|
||
[Ansible]: <https://www.ansible.com> | ||
[Kea DHCP]: <http://kea.isc.org/> | ||
- [@mrlesmithjr](https://www.twitter.com/mrlesmithjr) | ||
- [EverythingShouldBeVirtual](http://everythingshouldbevirtual.com) | ||
- [mrlesmithjr@gmail.com](mailto:mrlesmithjr@gmail.com) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.