diff options
author | Andreas Schneider <asn@samba.org> | 2019-04-30 08:33:15 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2019-05-07 00:11:25 +0000 |
commit | 4607ed73354716367e71f575d18bd8f5ba8e926d (patch) | |
tree | f7e2d404f502d945aa663a4954ab7842f7da5aa9 /bootstrap | |
parent | 1b9cd2acda393577c0e9c2ef908c520b3d7ca6f7 (diff) | |
download | samba-4607ed73354716367e71f575d18bd8f5ba8e926d.tar.gz |
bootstrap: Fix yum commands
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap/config.py b/bootstrap/config.py index 627b7e11397..3d388f31800 100644 --- a/bootstrap/config.py +++ b/bootstrap/config.py @@ -210,11 +210,11 @@ YUM_BOOTSTRAP = r""" {GENERATED_MARKER} set -xueo pipefail -yum -y -q update -yum -y -q install epel-release -yum -y -q update +yum update -y +yum install -y epel-release +yum update -y -yum -y -q --verbose install \ +yum install -y \ {pkgs} yum clean all |