mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add support for Scientific Linux for hostname module
hostname module was lacking support for Scientific Linux, this commit adds it.
This commit is contained in:
parent
559e89036b
commit
34f9349b5e
1 changed files with 5 additions and 0 deletions
|
@ -256,6 +256,11 @@ class AmazonLinuxHostname(Hostname):
|
||||||
distribution = 'Amazon'
|
distribution = 'Amazon'
|
||||||
strategy_class = RedHatStrategy
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
class ScientificLinuxHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Scientific'
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
class FedoraStrategy(GenericStrategy):
|
class FedoraStrategy(GenericStrategy):
|
||||||
|
|
Loading…
Reference in a new issue