From 5950ea063b1063742ea49b8a0262849167265bc0 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Fri, 5 May 2017 20:01:39 +0000 Subject: [PATCH] Add python3-yaml to signing node Upcoming release automation additions are Py3K-only and need PyYAML available to the Python3 interpreter on the signing node. Install the python3-specific build of the library (the python2 version is already being installed elsewhere). Change-Id: Ifb435ea9c5d99639e1562761f9c48cbefb9db57f --- modules/openstack_project/manifests/signing_node.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/openstack_project/manifests/signing_node.pp b/modules/openstack_project/manifests/signing_node.pp index ee8a460dad..3a76b6101e 100644 --- a/modules/openstack_project/manifests/signing_node.pp +++ b/modules/openstack_project/manifests/signing_node.pp @@ -100,4 +100,8 @@ class openstack_project::signing_node ( require => File['/home/jenkins/.launchpadlib'], } + package { 'python3-yaml': + ensure => present, + } + }