diff options
author | Brent Eagles <beagles@redhat.com> | 2017-06-27 09:55:37 -0230 |
---|---|---|
committer | Brent Eagles <beagles@redhat.com> | 2017-06-29 11:55:14 -0230 |
commit | d71697a419f459b8fa4b748a64ac6580b3a82456 (patch) | |
tree | 1fddec7fe6b7c778da51ec0349f65076d32127a2 /manifests/host | |
parent | 3fcafacc1e3de1c3fad756135889f2f4a3c4fbe2 (diff) |
Do not fail if PCI device is missing
Fixes a problem where SR-IOV VF count configuration will fail if a
physical function is in use by a guest when 'puppet apply' is executed.
This change substitutes warnings for failures and skips complaints if a
PCI device is unavailable.
Note: this patch has the side-effect of allowing the same configuration
data on hosts that may *not* or *ever* have PCI SR-IOV devices on the
hardware. Time will tell how evil this is in practice.
Closes-Bug: #1701284
Change-Id: I71edc135432ab2193741c37ce977dd11172401e6
Diffstat (limited to 'manifests/host')
-rw-r--r-- | manifests/host/sriov.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/host/sriov.pp b/manifests/host/sriov.pp index b94c472..c06796d 100644 --- a/manifests/host/sriov.pp +++ b/manifests/host/sriov.pp @@ -16,7 +16,7 @@ class tripleo::host::sriov ( ) { if !empty($number_of_vfs) { - sriov_vf_config { $number_of_vfs: ensure => present } + sriov_vf_config { $number_of_vfs: } # the numvfs configuration needs to be persisted for every boot tripleo::host::sriov::numvfs_persistence {'persistent_numvfs': |