How To Install ipa-fas on Rocky Linux 8
In this tutorial we learn how to install ipa-fas on Rocky Linux 8. ipa-fas is Fedora Account System extension for IdM
Introduction
In this tutorial we learn how to install ipa-fas
on Rocky Linux 8.
What is ipa-fas
A module for IdM with extensions for Fedora Account System.
We can use yum
or dnf
to install ipa-fas
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install ipa-fas.
Install ipa-fas on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install ipa-fas
using dnf
by running the following command:
sudo dnf -y install ipa-fas
Install ipa-fas on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install ipa-fas
using yum
by running the following command:
sudo yum -y install ipa-fas
How To Uninstall ipa-fas on Rocky Linux 8
To uninstall only the ipa-fas
package we can use the following command:
sudo dnf remove ipa-fas
ipa-fas Package Contents on Rocky Linux 8
/usr/bin/ipa-create-agreement
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/baseruserfas.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/baseruserfas.cpython-36.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/fasagreement.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/fasagreement.cpython-36.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/fasutils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/fasutils.cpython-36.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/groupfas.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/groupfas.cpython-36.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/stageuserfas.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/stageuserfas.cpython-36.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/userfas.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/__pycache__/userfas.cpython-36.pyc
/usr/lib/python3.6/site-packages/ipaserver/plugins/baseruserfas.py
/usr/lib/python3.6/site-packages/ipaserver/plugins/fasagreement.py
/usr/lib/python3.6/site-packages/ipaserver/plugins/fasutils.py
/usr/lib/python3.6/site-packages/ipaserver/plugins/groupfas.py
/usr/lib/python3.6/site-packages/ipaserver/plugins/stageuserfas.py
/usr/lib/python3.6/site-packages/ipaserver/plugins/userfas.py
/usr/share/doc/ipa-fas
/usr/share/doc/ipa-fas/CONTRIBUTORS.txt
/usr/share/doc/ipa-fas/README.md
/usr/share/ipa/schema.d/89-fasschema.ldif
/usr/share/ipa/ui/js/plugins/fasagreement
/usr/share/ipa/ui/js/plugins/fasagreement/fasagreement.js
/usr/share/ipa/ui/js/plugins/groupfas
/usr/share/ipa/ui/js/plugins/groupfas/groupfas.js
/usr/share/ipa/ui/js/plugins/userfas
/usr/share/ipa/ui/js/plugins/userfas/userfas.js
/usr/share/ipa/updates/89-fas.update
/usr/share/licenses/ipa-fas
/usr/share/licenses/ipa-fas/COPYING
References
Summary
In this tutorial we learn how to install ipa-fas
on Rocky Linux 8 using yum and dnf.