1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add support for 'KDE Neon' to hostname module (#25262)

Added the class "NeonHostname" to add support for KDE Neon.
This commit is contained in:
emmetfryan 2017-08-29 13:03:22 -05:00 committed by Adrian Likins
parent b12925fcdb
commit 4b0ee9a5e7

View file

@ -743,6 +743,12 @@ class NetBSDHostname(Hostname):
strategy_class = FreeBSDStrategy strategy_class = FreeBSDStrategy
class NeonHostname(Hostname):
platform = 'Linux'
distribution = 'Neon'
strategy_class = DebianStrategy
# =========================================== # ===========================================
def main(): def main():