From 8db516bc5ff08a6fd70a17382cdc3f1e40d3e66f Mon Sep 17 00:00:00 2001 From: Trey Perry Date: Tue, 4 Aug 2015 15:42:59 -0500 Subject: [PATCH] Adding license and removing errant default on the hosts option --- lib/ansible/modules/extras/coordination/znode | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/coordination/znode b/lib/ansible/modules/extras/coordination/znode index 4e9dec4ce49..5d6bff16f06 100644 --- a/lib/ansible/modules/extras/coordination/znode +++ b/lib/ansible/modules/extras/coordination/znode @@ -1,4 +1,21 @@ #!/usr/bin/python +# Copyright 2015 WP Engine, Inc. All rights reserved. +# +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see . + DOCUMENTATION = """ --- module: znode @@ -7,7 +24,6 @@ options: hosts: description: - A list of ZooKeeper servers (format '[server]:[port]'). - default: localhost:2181 required: true path: description: @@ -35,6 +51,7 @@ options: required: false requirements: - kazoo >= 2.1 +author: "Trey Perry (@treyperry)" --- """