From 676bc3cadba2fb46a76831bd9a6c8d818a557ced Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Mon, 22 Apr 2019 10:16:47 -0700 Subject: [PATCH] Install socat on zuul executors This is needed for the intermediate registry jobs. Change-Id: I98652c4cf4ec0688d18e74d39090bb3b22ad8274 --- manifests/site.pp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/manifests/site.pp b/manifests/site.pp index 9e3f3311a0..adc2035a20 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -837,6 +837,14 @@ node /^ze\d+\.open.*\.org$/ { ], } + # Socat is also required for pushing/pulling images + package { 'socat': + ensure => present, + require => [ + Class['apt::update'], + ], + } + # NOTE(pabelanger): We call ::zuul directly, so we can override all in one # settings. class { '::zuul':