X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=api_calls.py;h=cd97e137ccc08511602fde520dcc4a39928db1ac;hb=0fd3392ee63c1ea84db707456a0fcf26a378d211;hp=e99a5598fb26fff4c56c062913da2f7af9ed120d;hpb=5e8476e81252fe9366d99add682ee6755d23a1d3;p=nodemanager.git diff --git a/api_calls.py b/api_calls.py index e99a559..cd97e13 100644 --- a/api_calls.py +++ b/api_calls.py @@ -164,9 +164,9 @@ def Destroy(sliver_name): returns=Parameter(int, '1 if successful')) @export_to_api(1) def Start(sliver_name): - """Run start scripts belonging to the specified sliver""" + """Configure and start sliver.""" rec = sliver_name - accounts.get(rec['name']).start() + accounts.get(rec['name']).start(rec) @export_to_docbook(roles=['nm-controller', 'self'], accepts=[Parameter(str, 'A sliver/slice name.')],