From: nlebreto Date: Tue, 28 Jan 2014 16:39:23 +0000 (+0100) Subject: r1.4 adding more information for sfa plugin X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=commitdiff_plain;h=cd533ea33bcf974e79837fd2a15f3bb75ec52add r1.4 adding more information for sfa plugin --- diff --git a/sfa/bonfire/bonfire.py b/sfa/bonfire/bonfire.py index 64fe2e15..84ad0803 100644 --- a/sfa/bonfire/bonfire.py +++ b/sfa/bonfire/bonfire.py @@ -32,12 +32,16 @@ import time # 7) remove slice or key # python -c 'import bonfire; print bonfire.remove_slice("topdomain.dummy.alice_slice")' - - +# 8) attach slice to a user +# python -c 'import bonfire; print bonfire.create_slice_attach_user("topdomain.dummy.alice")' + # ########################################################## # - - # ########################################################## # + +# create a slice and attach a specific user to it +def create_slice_attach_user(user_slice): + call = "sfa.py add -x {0}_slice -t slice -r {0}@dummy.net".format(user_slice) + callcreateslice = subprocess.Popen(call, shell=True) # remove slice or key def remove_slice(name):