From: Faiyaz Ahmed Date: Tue, 8 Jul 2008 17:46:08 +0000 (+0000) Subject: Disregard scripts that start with "local_". X-Git-Tag: NodeManager-1.8-0~26 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=3d91a2d9f6ad2ec10711942f178f74bca4d2d2d9;p=nodemanager.git Disregard scripts that start with "local_". --- diff --git a/vsys.py b/vsys.py index a1558bd..b11b959 100644 --- a/vsys.py +++ b/vsys.py @@ -56,6 +56,8 @@ def touchAcls(): scripts = [] for (root, dirs, files) in os.walk(VSYSBKEND): for file in files: + # ingore scripts that start with local_ + if file.startswith("local_"): continue if file.endswith(".acl"): acls.append(file.rstrip(".acl")) else: @@ -95,7 +97,7 @@ def parseAcls(): scriptacls = {} for (root, dirs, files) in os.walk(VSYSBKEND): for file in files: - if file.endswith(".acl"): + if file.endswith(".acl") and not file.startswith("local_"): f = open(root+"/"+file,"r+") scriptname = file.rstrip(".acl") scriptacls[scriptname] = []