From fcea87926f8311cefcf64b5d3ca95b13b44c9c67 Mon Sep 17 00:00:00 2001 From: Quentin Dawans Date: Thu, 30 Jul 2020 10:22:19 +0200 Subject: [PATCH] Support manjaro arm in hostname module (#69861) --- lib/ansible/modules/hostname.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/hostname.py b/lib/ansible/modules/hostname.py index 6d8a0722e08..5be952af4e2 100644 --- a/lib/ansible/modules/hostname.py +++ b/lib/ansible/modules/hostname.py @@ -640,6 +640,12 @@ class ManjaroHostname(Hostname): strategy_class = SystemdStrategy +class ManjaroARMHostname(Hostname): + platform = 'Linux' + distribution = 'Manjaro-arm' + strategy_class = SystemdStrategy + + class RHELHostname(Hostname): platform = 'Linux' distribution = 'Redhat'