aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/host/sriov.pp
diff options
context:
space:
mode:
authorBrent Eagles <beagles@redhat.com>2016-11-07 16:22:31 -0330
committerBrent Eagles <beagles@redhat.com>2016-11-11 10:02:42 -0330
commit9a79bdab86224e678414fd98ba2e888836083e79 (patch)
treeed14b867d3cd1c26694cdd629543dea169f1b026 /manifests/host/sriov.pp
parentf5a20ed5911324311b02773dde8a917eb82ddc0c (diff)
Call VF configuration from udev rules
When a physical function that was allocated to a guest is released back the system, it is not automatically brought "up" and the VF configuration is not restored. This patch creates a file containing some udev rules to force the VF configuration. Note: we may find that the ifup-local script is no longer required but this will require further testing. Change-Id: Ie6e78730aa0a748b3b5100ab7c7bc007d8ab176d Partial-Bug: #1639901
Diffstat (limited to 'manifests/host/sriov.pp')
-rw-r--r--manifests/host/sriov.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/host/sriov.pp b/manifests/host/sriov.pp
index a30db42..b94c472 100644
--- a/manifests/host/sriov.pp
+++ b/manifests/host/sriov.pp
@@ -21,7 +21,8 @@ class tripleo::host::sriov (
# the numvfs configuration needs to be persisted for every boot
tripleo::host::sriov::numvfs_persistence {'persistent_numvfs':
vf_defs => $number_of_vfs,
- content_string => "#!/bin/bash\n"
+ content_string => "#!/bin/bash\n",
+ udev_rules => ''
}
}
}