From ee274793962cce1e2852df8517a3602a14787511 Mon Sep 17 00:00:00 2001 From: Jason Rothstein Date: Sun, 29 Nov 2020 21:27:46 -0600 Subject: [PATCH] Document and ensure Ansible FQCN --- README.md | 8 +++++--- meta/main.yml | 2 +- tasks/main.yml | 2 -- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 225dd44..285ac7e 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@ Role Name ========= -A brief description of the role goes here. +Ensure the OS time zone is defined Requirements ------------ -Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. +Please ensure the following collections are installed : + +* community.general Role Variables -------------- @@ -30,7 +32,7 @@ Including an example of how to use your role (for instance, with variables passe License ------- -BSD +LGPL-3.0-or-later Author Information ------------------ diff --git a/meta/main.yml b/meta/main.yml index b7af6b5..b8d6c36 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -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: LGPL-3.0-or-later min_ansible_version: 2.9 diff --git a/tasks/main.yml b/tasks/main.yml index bbfc8ff..43a265c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,8 +10,6 @@ - ansible_system == 'Linux' - services is not defined ansible.builtin.package_facts: -- name: 'flush handlers' - meta: 'flush_handlers' - name: 'Set timezone' community.general.timezone: hwclock: '{{ timezone.hwclock }}'