From 4b0ee9a5e7570ecf37c46a614c17d912cd592c82 Mon Sep 17 00:00:00 2001 From: emmetfryan Date: Tue, 29 Aug 2017 13:03:22 -0500 Subject: [PATCH] Add support for 'KDE Neon' to hostname module (#25262) Added the class "NeonHostname" to add support for KDE Neon. --- lib/ansible/modules/system/hostname.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/system/hostname.py b/lib/ansible/modules/system/hostname.py index 330e22ad90..4e145b6556 100644 --- a/lib/ansible/modules/system/hostname.py +++ b/lib/ansible/modules/system/hostname.py @@ -743,6 +743,12 @@ class NetBSDHostname(Hostname): strategy_class = FreeBSDStrategy +class NeonHostname(Hostname): + platform = 'Linux' + distribution = 'Neon' + strategy_class = DebianStrategy + + # =========================================== def main():