How to Install and Uninstall ghc-retry.x86_64 Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: October 06,2024

1. Install "ghc-retry.x86_64" package

This is a short guide on how to install ghc-retry.x86_64 on Red Hat Enterprise Linux 9 (RHEL 9)

$ sudo dnf update $ sudo dnf install ghc-retry.x86_64

2. Uninstall "ghc-retry.x86_64" package

This guide let you learn how to uninstall ghc-retry.x86_64 on Red Hat Enterprise Linux 9 (RHEL 9):

$ sudo dnf remove ghc-retry.x86_64 $ sudo dnf autoremove

3. Information about the ghc-retry.x86_64 package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 2:14:24 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : ghc-retry
Version : 0.8.1.2
Release : 13.el9
Architecture : x86_64
Size : 36 k
Source : ghc-retry-0.8.1.2-13.el9.src.rpm
Repository : epel
Summary : Retry combinators for monadic actions that may fail
URL : https://hackage.haskell.org/package/retry
License : BSD
Description : This package exposes combinators that can wrap arbitrary monadic actions.
: They run the action and potentially retry running it with some configurable
: delay for a configurable number of times. The purpose is to make it easier to
: work with IO and especially network IO actions that often experience temporary
: failure and warrant retrying of the original action. For example, a database
: query may time out for a while, in which case we should hang back for a bit and
: retry the query instead of simply raising an exception.