DescriptionVitaly Kuznetsov
2017-01-19 14:51:25 UTC
From https://bugzilla.redhat.com/show_bug.cgi?id=1412033:
Description of problem:
postinstall scriptlet of packages hypervfcopyd, hypervkvpd and hypervvssd contain the following line:
if [ $1 > 1 ] ; then
This line creates an empty file "/1" . The used syntax of "[" (see "man test") is wrong. The line should be changed in each of the listed packages to
if [ $1 -gt 1 ] ; then
The script has been changed, also have done hyperv-daemons related functional test for RHEL 7.4 compose on Hyper-v 2016 and 2012R2 host, the test result is pass.
So verify this bug as SanityOnly for package hyperv-daemons-0-0.30.20161211git.el7.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2017:1882