
Is there a rpm command to check .rpm package installation log
2017年3月21日 · Is there a rpm command to check .rpm package installation log when install failed to find out what happened
mocking - How do I test my RPM? - Stack Overflow
2016年10月6日 · That is a source rpm. You should keep going and create an actual rpm and test that.
Test installation of RPM packages - Stack Overflow
2012年4月24日 · The rpm installs the files, configures apache, cron, logging and so on. I would like to build a test version of the rpm that installs in a different location with a different configuration for apache, cron and logging. It should be possible to install both the production and test rpm on the same machine.
linux - Check RPM dependencies - Stack Overflow
When you are installing a program using .deb packages on Ubuntu, you can check dependencies of package using Ubuntu Packages Search. For example I can see dependencies of Wireshark from here. As yo...
Checking for missing dependencies without installing an RPM
2012年5月15日 · To do so, I'm trying to get the list of the missing dependencies when installing a new RPM by using a Perl program. I've tried using the rpm -qpR flag but it outputs all the requirements and not only the missing ones. Next, I've tried using the rpm -Uvh --test flags but can't get it to work - it outputs an empty string. My Perl program:
linux - Test rpm installation script - Stack Overflow
2013年12月26日 · I'm working on a script that install Apache automatically. Part of my pre-test is to check that the rpm are installed. For example to install apache you need zlib and zlib-devel So basically, I do ...
RPM: unit tests per subpackages in the %check section
2020年2月4日 · I have this rpm that contains multiple subpackages and for each subpackage there should be a couple unit tests , according to docs, rpm support unit testing by using the %check directive. But i wan...
Check if rpm exists in bash script silently - Stack Overflow
2011年11月10日 · I'm trying to do a quick check to see if an rpm is installed in a bash script using an if statement. But I want to do it silently. Currently, when I run the script, and the rpm does exist, it outpu...
Best way to check for installed yum package/rpm version in …
2016年5月18日 · Varaint of peaxol answer setting a fact with the installed package version number for futher tests - name: Find if custom_rpm is installed yum: list: custom_rpm register: custom_rpm_yum_packages when: ansible_os_family == "RedHat" - name: Extract custom_rpm actual installed version set_fact:
RPM + rpm installation (not create directory according to SPEC)
2011年4月17日 · I transfer the new rpm to other Linux machine in order to install the new rpm according to the spec file the new rpm -> test.sh-6.2-2.i386.rpm should create the /tmp/MY_RPM_TESTS directory , but this rpm not create the MY_RPM_TESTS and sub directories please advice why , what I need to fix in the spec file?