We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cfecec commit 6ae0bdfCopy full SHA for 6ae0bdf
opt/system-setup.py
@@ -34,7 +34,10 @@ def debian_compat(self):
34
35
def redhat_compat(self):
36
self.run("%s/bin/enable-utf8" % READIES)
37
- self.run("%s/bin/getepel" % READIES)
+ self.install("epel-release")
38
+ if self.osnick == "centos8":
39
+ self.run("dnf install -qy dnf-plugins-core")
40
+ self.run("dnf config-manager -qy --set-enabled powertools")
41
self.install("redhat-lsb-core")
42
43
self.run("%s/bin/getgcc --modern" % READIES)
0 commit comments