2023-07-10 08:35:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#List rpms installed from outside the standard yum repositories
|
|
|
|
|
2025-03-04 23:47:33 -05:00
|
|
|
dnf list extras \
|
2023-07-10 08:35:16 +01:00
|
|
|
--disablerepo=* \
|
2025-03-04 23:47:33 -05:00
|
|
|
--enablerepo=baseos \
|
|
|
|
--enablerepo=appstream \
|
|
|
|
--enablerepo=powertools \
|
2023-07-10 08:35:16 +01:00
|
|
|
--enablerepo=smeos \
|
|
|
|
--enablerepo=smeaddons \
|
|
|
|
--enablerepo=remi-safe \
|
2025-03-04 23:47:33 -05:00
|
|
|
--enablerepo=remi-modular \
|
|
|
|
| grep -vi '@anaconda' \
|
2023-07-10 08:35:16 +01:00
|
|
|
| grep -vi gpg-pubkey
|