diff options
author | Andreas Schneider <asn@samba.org> | 2019-04-23 11:40:07 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2019-04-25 10:47:16 +0000 |
commit | a6aff7333b95cc450918c69a2a563d473acf043c (patch) | |
tree | 2bb80f2abcaf0da3f734afa70d5558d3027e0573 /bootstrap/config.py | |
parent | fefb84b5b137e20d1cfb5436702ef6a8aa8ac79b (diff) | |
download | samba-a6aff7333b95cc450918c69a2a563d473acf043c.tar.gz |
bootstrap: Fix dnf commands
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'bootstrap/config.py')
-rw-r--r-- | bootstrap/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/config.py b/bootstrap/config.py index d8bb7cf9654..6f2b2bfd832 100644 --- a/bootstrap/config.py +++ b/bootstrap/config.py @@ -218,9 +218,9 @@ DNF_BOOTSTRAP = r""" {GENERATED_MARKER} set -xueo pipefail -dnf -y -q update +dnf update -y -dnf -y -q --verbose install \ +dnf install -y \ {pkgs} dnf clean all |