3631fc0ca5
DevStack now privides a mechanism to define methods before loading lib/*. Previously has_neutron_plugin_security_group is used before an external DevStack plugin is loaded, so we need to define this method in the master DevStack repo. Now we can define this method by using the override-defaults mechanism. This allows us to remove a plugin-specific definition from the master DevStack repo. Needed-By: Ib0f6e3d9463357d2dd66a2d61b8c722fa1f0bfba Change-Id: I8b19b8f1b0694a96132f158146848aee7d14e8ff
5 lines
84 B
Plaintext
5 lines
84 B
Plaintext
function has_neutron_plugin_security_group {
|
|
# 0 means True here
|
|
return 0
|
|
}
|