8000 make `--force=fakeroot` appropriately quiet for RHEL by lucaudill · Pull Request #1812 · hpc/charliecloud · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

make --force=fakeroot appropriately quiet for RHEL #1812

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/force.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
{ "name": "RHEL 7 and derivatives",
"match": ("/etc/redhat-release", r"release 7\."),
"init": [ ("command -v fakeroot > /dev/null",
"set -ex; "
"set -e; "
"if ! grep -Eq '\[epel\]' /etc/yum.conf /etc/yum.repos.d/*; then "
"yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm; "
"yum install -y fakeroot; "
Expand All @@ -198,7 +198,7 @@
{ "name": "RHEL 8+ and derivatives",
"match": ("/etc/redhat-release", r"release (?![0-7]\.)"),
"init": [ ("command -v fakeroot > /dev/null",
"set -ex; "
"set -e; "
"if ! grep -Eq '\[epel\]' /etc/yum.conf /etc/yum.repos.d/*; then "
# Macro %rhel from *-release* RPM, e.g. redhat-release-server
# or centos-linux-release; thus reliable.
Expand Down
0