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 NetBSD

While I only checked on NetBSD 7.0, it seems to use the same
rc system as FreeBSD so it should be working for now.
This commit is contained in:
Michael Scherer 2016-10-20 00:32:57 +02:00 committed by Brian Coca
parent 6ffd494efb
commit db8719cf8b

View file

@ -727,6 +727,11 @@ class FreeBSDHostname(Hostname):
distribution = None
strategy_class = FreeBSDStrategy
class NetBSDHostname(Hostname):
platform = 'NetBSD'
distribution = None
strategy_class = FreeBSDStrategy
# ===========================================