diff options
author | Taseer Ahmed <taseer94@gmail.com> | 2017-11-09 18:51:23 +0500 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-12-07 02:23:00 +0100 |
commit | 98c4d8d66caf5d5b0cbd3df451d3fd5ffde05373 (patch) | |
tree | bbc2bc49cdc3a0f05602edabec75d253f67a4004 /ci/deploy.sh | |
parent | 24ebffe4d0920d7c3c14d29dbe15f69cfdf732c1 (diff) |
[baremetal] package: install python-yaml
- Required for PDF parsing
Change-Id: I95205e62efab3e9920687866d3a53a135828a218
Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 0f4239608..b13e18e7e 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -278,9 +278,9 @@ pushd "${DEPLOY_DIR}" > /dev/null # For baremetal, python is indirectly required for PDF parsing if [ "${DEPLOY_TYPE}" = 'baremetal' ]; then [ -n "$(command -v apt-get)" ] && sudo apt-get install -y \ - python python-ipaddress python-jinja2 + python python-ipaddress python-jinja2 python-yaml [ -n "$(command -v yum)" ] && sudo yum install -y --skip-broken \ - python python-ipaddress python-jinja2 + python python-ipaddress python-jinja2 python-yaml fi # AArch64 VMs use AAVMF (guest UEFI) |