From cd533ea33bcf974e79837fd2a15f3bb75ec52add Mon Sep 17 00:00:00 2001 From: nlebreto Date: Tue, 28 Jan 2014 17:39:23 +0100 Subject: [PATCH] r1.4 adding more information for sfa plugin --- sfa/bonfire/bonfire.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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): -- 2.43.0