diff options
author | Brian Behlendorf <[email protected]> | 2017-11-15 09:12:52 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2017-11-15 09:12:52 -0800 |
commit | 13589da974e4e808b16d7dd280744277bb8d079b (patch) | |
tree | 02dc939cff559cab26ed31491aebe6f40583d4a1 /rpm | |
parent | 71788d91f432e3b633fa26375ec13265882c9e3f (diff) |
Disable automatic dependencies in zfs-test package
All of the ZTS test scripts specify /bin/ksh as the interpreter.
Unfortunately, as of Fedora 27 only /usr/bin/ksh is provided by
the package manager. Rather than change all the scripts to
accommodate the latest Fedora disable automatic dependencies
for the zfs-test package. Functionally this will not cause
any problems since /bin is a symlink to /usr/bin.
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #6868
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/generic/zfs.spec.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/rpm/generic/zfs.spec.in b/rpm/generic/zfs.spec.in index 697f5d3a1..0047247b7 100644 --- a/rpm/generic/zfs.spec.in +++ b/rpm/generic/zfs.spec.in @@ -180,11 +180,12 @@ Requires: lsscsi Requires: mdadm Requires: bc Requires: ksh -Requires: fio -Requires: acl -Requires: sudo -Requires: sysstat -Requires: rng-tools +Requires: fio +Requires: acl +Requires: sudo +Requires: sysstat +Requires: rng-tools +AutoReqProv: no %description test This package contains test infrastructure and support scripts for |