From 5c61bd05c3236afe260a7119e9edd8232d71c9a5 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Tue, 18 Nov 2008 16:02:15 +0000 Subject: [PATCH] If the included files fail, make db-config fail. --- db-config | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/db-config b/db-config index f664044..780bcf2 100755 --- a/db-config +++ b/db-config @@ -1038,18 +1038,20 @@ message, please reply so that we may investigate the problem. AddPCUProtocolType(id, ptype) # Run local db-config snippets + files = [] + dir = "/etc/planetlab/db-config.d" try: - dir = "/etc/planetlab/db-config.d" files = os.listdir(dir) - for file in files: - if (file.endswith(".bak") or file.endswith("~") or - file.endswith(".rpmsave") or file.endswith(".rpmnew") or - file.endswith(".orig")): - continue - execfile(os.path.join(dir, file)) except: pass + for file in files: + if (file.endswith(".bak") or file.endswith("~") or + file.endswith(".rpmsave") or file.endswith(".rpmnew") or + file.endswith(".orig")): + continue + execfile(os.path.join(dir, file)) + if __name__ == '__main__': main() -- 2.47.0