From 8aca7fdfcf2764a6120a584cb94e28ac6b311fcd Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Thu, 5 Nov 2020 15:22:49 -0500 Subject: [PATCH] 0.1.15-DEV-20201105-152244 -------------------------- * MODIFY: - slight formatting change for dhcpd package install task * REMOVE: - removed ansible-lint rule 201 as we've filled out meta/main.yml a little bit --- .ansible-lint | 1 - meta/main.yml | 13 +++++++++---- tasks/main.yml | 4 +++- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.ansible-lint b/.ansible-lint index 0ba8132..11b31cb 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -2,7 +2,6 @@ parseable: true quiet: false skip_list: - '010' - - '201' - '305' - '403' use_default_rules: true diff --git a/meta/main.yml b/meta/main.yml index 45b0a2a..a42a57f 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -1,7 +1,7 @@ galaxy_info: - author: your name - description: your role description - company: your company (optional) + author: Chris Hammer + description: Deploy DHCPd for each of our networks. + company: The Zen Garden # If the issue tracker for your role is not on github, uncomment the # next line and provide a value @@ -14,7 +14,7 @@ galaxy_info: # - GPL-3.0-only # - Apache-2.0 # - CC-BY-4.0 - license: license (GPL-2.0-or-later, MIT, etc) + license: GPLv2 min_ansible_version: 2.9 @@ -39,6 +39,11 @@ galaxy_info: # - 7 # - 99.99 + platforms: + - name: CentOS + versions: + - 7 + galaxy_tags: [] # List tags for your role here, one per line. A tag is a keyword that describes # and categorizes the role. Users find roles by searching for tags. Be sure to diff --git a/tasks/main.yml b/tasks/main.yml index a7c091c..f0f43b2 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,7 +1,9 @@ --- # tasks file for zen_dhcpd - name: install dhcpd package - yum: name=dhcp state=present + yum: + name: dhcp + state: present - name: deploy dhcpd config