From 60fd3c6bd3ad42fb28536067f6efe372cf120c22 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Fri, 18 Jun 2021 20:01:32 -0400 Subject: [PATCH] Ensure htpasswd exists earlier in the install process --- setup/so-functions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/so-functions b/setup/so-functions index 13438b1ba..ff019953e 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -2107,6 +2107,7 @@ saltify() { { if [[ ! $is_iso ]]; then yum -y install salt-minion-3003\ + httpd-tools\ python3\ python36-docker\ python36-dateutil\ @@ -2132,6 +2133,7 @@ saltify() { fi local pkg_arr=( + 'apache2-utils' 'ca-certificates' 'curl' 'software-properties-common'