Merge pull request #7741 from mgcrea/devel
Add support for Linaro distribution in hostname module
This commit is contained in:
commit
d35d5ac9d1
1 changed files with 7 additions and 2 deletions
|
@ -183,6 +183,11 @@ class UbuntuHostname(Hostname):
|
||||||
distribution = 'Ubuntu'
|
distribution = 'Ubuntu'
|
||||||
strategy_class = DebianStrategy
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
|
class LinaroHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Linaro'
|
||||||
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
class RedHatStrategy(GenericStrategy):
|
class RedHatStrategy(GenericStrategy):
|
||||||
|
|
Loading…
Reference in a new issue