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:
parent
6ffd494efb
commit
db8719cf8b
1 changed files with 5 additions and 0 deletions
|
@ -727,6 +727,11 @@ class FreeBSDHostname(Hostname):
|
|||
distribution = None
|
||||
strategy_class = FreeBSDStrategy
|
||||
|
||||
class NetBSDHostname(Hostname):
|
||||
platform = 'NetBSD'
|
||||
distribution = None
|
||||
strategy_class = FreeBSDStrategy
|
||||
|
||||
|
||||
# ===========================================
|
||||
|
||||
|
|
Loading…
Reference in a new issue