From 4462d7d66e09c40c351cd36447412aa5525cc782 Mon Sep 17 00:00:00 2001 From: Juan Vidal Allende Date: Tue, 11 Jul 2017 18:30:02 +0200 Subject: Fix missing python packages for password generation These packages are needed by pw-token-gen.py tool Change-Id: Ib9d165274449551a469e201da9feeffac5a7a4cf Signed-off-by: Juan Vidal Allende --- prototypes/xci/playbooks/configure-opnfvhost.yml | 7 +++++++ prototypes/xci/var/Debian.yml | 1 + prototypes/xci/var/RedHat.yml | 1 + prototypes/xci/var/Suse.yml | 1 + 4 files changed, 10 insertions(+) diff --git a/prototypes/xci/playbooks/configure-opnfvhost.yml b/prototypes/xci/playbooks/configure-opnfvhost.yml index 8656ff9df..a7ce5216c 100644 --- a/prototypes/xci/playbooks/configure-opnfvhost.yml +++ b/prototypes/xci/playbooks/configure-opnfvhost.yml @@ -87,6 +87,13 @@ command: "/bin/bash ./scripts/bootstrap-ansible.sh" args: chdir: "{{OPENSTACK_OSA_PATH}}" + - name: install python Crypto module + package: + name: "{{ python_crypto_package_name }}" + - name: install PyYAML + pip: + name: pyyaml + state: present - name: generate password token command: "python pw-token-gen.py --file {{OPENSTACK_OSA_ETC_PATH}}/user_secrets.yml" args: diff --git a/prototypes/xci/var/Debian.yml b/prototypes/xci/var/Debian.yml index d13d08097..33f110593 100644 --- a/prototypes/xci/var/Debian.yml +++ b/prototypes/xci/var/Debian.yml @@ -9,3 +9,4 @@ ############################################################################## # this is the interface the VM nodes are connected to libvirt network "default" interface: "ens3" +python_crypto_package_name: python-crypto diff --git a/prototypes/xci/var/RedHat.yml b/prototypes/xci/var/RedHat.yml index 6d03e0f32..eae7d127f 100644 --- a/prototypes/xci/var/RedHat.yml +++ b/prototypes/xci/var/RedHat.yml @@ -8,3 +8,4 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## # this is placeholder and left blank intentionally to complete later on +python_crypto_package_name: python-crypto diff --git a/prototypes/xci/var/Suse.yml b/prototypes/xci/var/Suse.yml index 6d03e0f32..9674ed2d9 100644 --- a/prototypes/xci/var/Suse.yml +++ b/prototypes/xci/var/Suse.yml @@ -8,3 +8,4 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## # this is placeholder and left blank intentionally to complete later on +python_crypto_package_name: python-pycrypto -- cgit 1.2.3-korg