X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=bin%2Fcheck-hrns.py;h=1ca6cdf6d82613e4be286d946bf08c6034190826;hb=d8e1032be6c99ebeed2a6084fe8b63fc4f67ee63;hp=8febdee0178e3c4fbc0062091b3b1abd92056dde;hpb=756d13b20a48c963da2a0aeba4932e6c5d442dde;p=myplc.git diff --git a/bin/check-hrns.py b/bin/check-hrns.py index 8febdee..1ca6cdf 100755 --- a/bin/check-hrns.py +++ b/bin/check-hrns.py @@ -108,9 +108,9 @@ Example: dry_run=options.show verbose=options.verbose # optimizing : we compute the set of sites only once - sites = GetSites({'peer_id':None},['site_id','login_base','node_ids','person_ids','name','hrn','slice_ids']) + sites = GetSites({'peer_id':None},['site_id','login_base','node_ids','person_ids','name','hrn','slice_ids', 'sfa_created']) # remove external sites created through SFA - sites = [site for site in sites if not site['name'].startswith('sfa:')] + sites = [site for site in sites if site['sfa_created'] != 'True'] sites_by_id = dict ( [ (site['site_id'], site) for site in sites ] ) if options.nodes: handle_nodes(sites,sites_by_id,dry_run,verbose)