diff options
author | Petr OspalĂ˝ <p.ospaly@partner.samsung.com> | 2019-03-25 13:25:45 +0100 |
---|---|---|
committer | Michal Ptacek <m.ptacek@partner.samsung.com> | 2019-03-26 15:02:50 +0000 |
commit | 98ea82804e23245082f2a7b9363ea5b10300329a (patch) | |
tree | 534634bbdf713a70211c0390bc0e80e4881d554d /ansible/roles | |
parent | 47171a8dc441ae9526b74d210b88751cb7842c79 (diff) |
Add python-jsonpointer as a new dependency
Our custom ansible module requires python-jsonpointer module
to deal with jsons.
Change-Id: Idd7bfcf8fcf75e4397fba51d8219b73c57df5f0e
Issue-ID: OOM-1758
Signed-off-by: Petr OspalĂ˝ <p.ospaly@partner.samsung.com>
Diffstat (limited to 'ansible/roles')
-rw-r--r-- | ansible/roles/docker/tasks/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ansible/roles/docker/tasks/main.yml b/ansible/roles/docker/tasks/main.yml index 16b7002f..de740df2 100644 --- a/ansible/roles/docker/tasks/main.yml +++ b/ansible/roles/docker/tasks/main.yml @@ -11,6 +11,11 @@ name: 'python2-docker' state: present +- name: Install python jsonpointer module + package: + name: 'python-jsonpointer' + state: present + - name: Ensure /etc/docker exists file: path: /etc/docker |