Commit 83f50f8a authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Romain Courteaud

Silence a few pylint complaints.

parent e6a071c5
...@@ -157,8 +157,10 @@ def _getDict(instance): ...@@ -157,8 +157,10 @@ def _getDict(instance):
class Computer: class Computer:
"Object representing the computer" "Object representing the computer"
instance_root = None
software_root = None
def __init__(self, reference, bridge=None, addr = None, netmask = None, def __init__(self, reference, bridge=None, addr=None, netmask=None,
ipv6_interface=None): ipv6_interface=None):
""" """
Attributes: Attributes:
...@@ -408,6 +410,7 @@ class Partition: ...@@ -408,6 +410,7 @@ class Partition:
class User: class User:
"User: represent and manipulate a user on the system." "User: represent and manipulate a user on the system."
path = None
def __init__(self, user_name, additional_group_list=None): def __init__(self, user_name, additional_group_list=None):
""" """
...@@ -578,7 +581,7 @@ class Bridge: ...@@ -578,7 +581,7 @@ class Bridge:
# Attach to TAP network interface, only if the bridge interface does not # Attach to TAP network interface, only if the bridge interface does not
# report carrier # report carrier
returncode, result = callAndRead(['ip', 'addr', 'list', self.name]) _, result = callAndRead(['ip', 'addr', 'list', self.name])
self.attach_to_tap = 'DOWN' in result.split('\n', 1)[0] self.attach_to_tap = 'DOWN' in result.split('\n', 1)[0]
def __getinitargs__(self): def __getinitargs__(self):
...@@ -617,7 +620,7 @@ class Bridge: ...@@ -617,7 +620,7 @@ class Bridge:
def getInterfaceList(self): def getInterfaceList(self):
"""Returns list of interfaces already present on bridge""" """Returns list of interfaces already present on bridge"""
interface_list = [] interface_list = []
returncode, result = callAndRead(['brctl', 'show']) _, result = callAndRead(['brctl', 'show'])
in_bridge = False in_bridge = False
for line in result.split('\n'): for line in result.split('\n'):
if len(line.split()) > 1: if len(line.split()) > 1:
...@@ -676,7 +679,7 @@ class Bridge: ...@@ -676,7 +679,7 @@ class Bridge:
# wait few moments # wait few moments
time.sleep(2) time.sleep(2)
# check existence on interface # check existence on interface
returncode, result = callAndRead(['ip', 'addr', 'list', interface_name]) _, result = callAndRead(['ip', 'addr', 'list', interface_name])
for l in result.split('\n'): for l in result.split('\n'):
if address in l: if address in l:
if 'tentative' in l: if 'tentative' in l:
...@@ -967,7 +970,19 @@ def run(config): ...@@ -967,7 +970,19 @@ def run(config):
raise raise
class Config: class Config:
def checkRequiredBinary(self, binary_list): key_file = None
cert_file = None
alter_network = None
alter_user = None
computer_xml = None
logger = None
log_file = None
verbose = None
dry_run = None
console = None
@staticmethod
def checkRequiredBinary(binary_list):
missing_binary_list = [] missing_binary_list = []
for b in binary_list: for b in binary_list:
try: try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment