Commit 47bd4fcb authored by Alain Takoudjou's avatar Alain Takoudjou

monitor: fix folder exist with apachedex

parent fda687cd
......@@ -147,7 +147,7 @@ mode = 0644
recipe = hexagonit.recipe.download
url = ${:_profile_base_location_}/${:filename}
download-only = true
md5sum = 00b230e1dee6e7f25d2050f6f0ae39e2
md5sum = 54c8a93ab16918392784794dd86d221e
filename = run-apachedex.py.in
mode = 0644
......
......@@ -2,7 +2,7 @@
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
import os
import os, errno
import subprocess
from datetime import date
......@@ -26,8 +26,14 @@ if not os.path.exists(output_folder) or not os.path.isdir(output_folder):
exit(1)
today = date.today().strftime("%Y-%m-%d")
folder_today = os.path.join(output_folder, 'ApacheDex-%s' % today)
if not os.path.exists(folder_today):
# XXX- don't raise if folder_today exist
try:
os.makedirs(folder_today)
except OSError as exc:
if exc.errno == errno.EEXIST and os.path.isdir(folder_today):
pass
else: raise
apachedex = "{{ apachedex_executable }}".strip()
argument_list = [apachedex, '--js-embed', '--out',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment