1

On my setup, where RPM will be installed, will have a file below:

#cat /etc/setup-details
environment=QA
#

Now, if environment is QA, i want below Requires:

Requires: my-qa-rpm

If environment is dev, i want below Requires:

Requires: my-dev-rpm

How to achieve dynamic Requires in RPM based on environment?

Niraj Nandane
  • 1,318
  • 1
  • 13
  • 24

1 Answers1

2

There isn't such a thing as dynamic requires that you are requesting. The only workaround is creating two packages (each with proper Requres:) then install the correct package by checking the value in the file (via bash script).

Danila Vershinin
  • 8,725
  • 2
  • 29
  • 35