mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Support Virtuozzo Linux Host in hostname module (#25963)
This commit is contained in:
parent
e05eebcb50
commit
b12925fcdb
1 changed files with 7 additions and 0 deletions
|
@ -665,6 +665,13 @@ class OracleLinuxHostname(Hostname):
|
|||
distribution = 'Oracle linux server'
|
||||
strategy_class = RedHatStrategy
|
||||
|
||||
|
||||
class VirtuozzoLinuxHostname(Hostname):
|
||||
platform = 'Linux'
|
||||
distribution = 'Virtuozzo linux'
|
||||
strategy_class = RedHatStrategy
|
||||
|
||||
|
||||
class AmazonLinuxHostname(Hostname):
|
||||
platform = 'Linux'
|
||||
distribution = 'Amazon'
|
||||
|
|
Loading…
Reference in a new issue