Fix privileged typo in docker-puppet.py

We have the following code in docker-puppet.py:

   service.get('prigileged', False),

This typo will prevent privileged true to work. This typo was added via
If70da9804d8a26fff594f7282f64318fd6b79e2c

Change-Id: Id85145656dbb82338c2a73915abdb64114bfc1fb
Closes-Bug: #1795558
This commit is contained in:
Michele Baldessari 2018-10-02 08:59:55 +02:00
parent 453f3dae50
commit 203a5f249e
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ for service in (json_data or []):
service.get('step_config'),
service.get('config_image'),
service.get('volumes', []),
service.get('prigileged', False),
service.get('privileged', False),
]
config_volume = service[0] or ''