Would like a way to specify common utilities that need installing.
It would be helpful to have a way to refernence commonly installed utilities without having to necessarily write the code to install it. For example, it's common to need epel for a RHEL family OS since may tools come from there. It's also common to have a preferred set of utilities to add to an instance.
Example to install byobu on alma, I need to run the following steps:
sudo dnf install epel-release
sudo dnf install byobu
If I have to write the same code for every factory or instance the work gets tedious. It would be nice to have library that i could use, include, or reference that avoids the repeated work.