diff options
Diffstat (limited to 'resources/libraries/python/SysctlUtil.py')
-rw-r--r-- | resources/libraries/python/SysctlUtil.py | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/resources/libraries/python/SysctlUtil.py b/resources/libraries/python/SysctlUtil.py index 0db7e2c5e5..f8c169a833 100644 --- a/resources/libraries/python/SysctlUtil.py +++ b/resources/libraries/python/SysctlUtil.py @@ -15,10 +15,10 @@ from resources.libraries.python.ssh import exec_cmd_no_error -__all__ = ["SysctlUtil"] +__all__ = [u"SysctlUtil"] -class SysctlUtil(object): +class SysctlUtil: """Class contains methods for getting or setting sysctl settings.""" @staticmethod @@ -30,10 +30,8 @@ class SysctlUtil(object): :type node: dict :type key: str """ - command = 'sysctl {key}'.format(key=key) - - message = 'Node {host} failed to run: {command}'.\ - format(host=node['host'], command=command) + command = f"sysctl {key}" + message = f"Node {node[u'host']} failed to run: {command}" exec_cmd_no_error(node, command, sudo=True, message=message) @@ -48,10 +46,7 @@ class SysctlUtil(object): :type key: str :type value: str """ - command = 'sysctl -w {key}={value}'.format(key=key, value=value) - - message = 'Node {host} failed to run: {command}'.\ - format(host=node['host'], command=command) + command = f"sysctl -w {key}={value}" + message = f"Node {node[u'host']} failed to run: {command}" exec_cmd_no_error(node, command, sudo=True, message=message) - |