diff options
Diffstat (limited to 'contrib/ci/README.md')
-rw-r--r-- | contrib/ci/README.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/ci/README.md b/contrib/ci/README.md index 50b73ec35..6bd2fd92c 100644 --- a/contrib/ci/README.md +++ b/contrib/ci/README.md @@ -36,11 +36,16 @@ package and on Debian in `lsb-release`. The rest of the required packages CI will attempt to install itself, using the distribution's package manager invoked through sudo. -A sudo rule can be employed to selectively avoid password prompts on Red Hat +A sudo rule can be employed to selectively avoid password prompts on RHEL distros: <USER> ALL=(ALL:ALL) NOPASSWD: /usr/bin/yum --assumeyes install -- * +on Fedora distros: + + # We need to use yum-deprecated on Fedora because of BZ1215208. + <USER> ALL=(ALL:ALL) NOPASSWD: /usr/bin/yum-deprecated --assumeyes install -- * + and Debian-based distros: <USER> ALL=(ALL:ALL) NOPASSWD: /usr/bin/apt-get --yes install -- * |