diff options
| author | Jason Koelker <jason@koelker.net> | 2011-09-14 13:47:35 -0500 |
|---|---|---|
| committer | Jason Koelker <jason@koelker.net> | 2011-09-14 13:47:35 -0500 |
| commit | ee11a4661bb855c354ae567fd18b8b3274d05df8 (patch) | |
| tree | d79dc0b63c54e9bc75af8760b1e80271d1f8cef9 | |
| parent | ffddc029198b88d0a2cd42e6c5e9d21a6ad259fa (diff) | |
get all the vifs
| -rw-r--r-- | nova/db/api.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nova/db/api.py b/nova/db/api.py index c32189cc0..0db4622c9 100644 --- a/nova/db/api.py +++ b/nova/db/api.py @@ -460,6 +460,11 @@ def virtual_interface_delete_by_instance(context, instance_id): return IMPL.virtual_interface_delete_by_instance(context, instance_id) +def virtual_interface_get_all(context): + """Gets all virtual interfaces from the table,""" + return IMPL.virtual_interface_get_all(context) + + #################### |
