From 7ccf873c82f12adda204c05f53adb3ff6be3fc0b Mon Sep 17 00:00:00 2001 From: rabi Date: Tue, 24 May 2022 15:43:48 +0530 Subject: [PATCH] Change chrony_role_action default to 'all' As documented we should change the default to 'all'. Also fixes tox-linters job. Change-Id: I33bf616bcca62f68437a0c2520cb860194a3a203 --- ansible-requirements.txt | 2 +- defaults/main.yml | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ansible-requirements.txt b/ansible-requirements.txt index 7507f3e..540637e 100644 --- a/ansible-requirements.txt +++ b/ansible-requirements.txt @@ -3,4 +3,4 @@ # lint checks and want to document these as ansible specific things that may # be required for this repository. ansible<2.10 -ansible-lint +ansible-lint<4.3.0 diff --git a/defaults/main.yml b/defaults/main.yml index 8336c9c..8e1aaa3 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,6 +1,6 @@ --- chrony_debug: False -chrony_role_action: install +chrony_role_action: all chrony_global_server_settings: iburst chrony_ntp_servers: [] chrony_ntp_pools: ['pool.ntp.org'] diff --git a/setup.py b/setup.py index 6a931a6..58ffb52 100644 --- a/setup.py +++ b/setup.py @@ -16,4 +16,5 @@ import setuptools setuptools.setup( setup_requires=['pbr'], + py_modules=[], pbr=True)