aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/VppConfigGenerator.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/VppConfigGenerator.py')
-rw-r--r--resources/libraries/python/VppConfigGenerator.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/python/VppConfigGenerator.py b/resources/libraries/python/VppConfigGenerator.py
index e109d768fa..2a8f202721 100644
--- a/resources/libraries/python/VppConfigGenerator.py
+++ b/resources/libraries/python/VppConfigGenerator.py
@@ -257,7 +257,7 @@ class VppConfigGenerator(object):
"""Add cryptodev configuration for node.
:param node: DUT node.
- :param count: Number of crypto device to add.
+ :param count: Number of crypto devices to add.
:type node: dict
:type count: int
:returns: nothing
@@ -270,10 +270,10 @@ class VppConfigGenerator(object):
self._nodeconfig[hostname] = {}
cryptodev = Topology.get_cryptodev(node)
- cryptodev_config = 'enable-cryptodev'
+ cryptodev_config = ''
for i in range(count):
- cryptodev_config += ' dev {}'.format(\
+ cryptodev_config += 'dev {}\n'.format(
re.sub(r'\d.\d$', '1.'+str(i), cryptodev))
self._nodeconfig[hostname]['cryptodev_config'] = cryptodev_config