mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix pep8 error in hostname module
This commit is contained in:
parent
cc2fdb9d83
commit
1d24bcc916
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ class FedoraStrategy(GenericStrategy):
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
self.module.fail_json(msg="Command failed rc=%d, out=%s, err=%s" %
|
self.module.fail_json(msg="Command failed rc=%d, out=%s, err=%s" %
|
||||||
(rc, out, err))
|
(rc, out, err))
|
||||||
return out
|
return out
|
||||||
|
|
||||||
def set_permanent_hostname(self, name):
|
def set_permanent_hostname(self, name):
|
||||||
cmd = ['hostnamectl', '--pretty', 'set-hostname', name]
|
cmd = ['hostnamectl', '--pretty', 'set-hostname', name]
|
||||||
|
|
Loading…
Reference in a new issue