Skip to content
Snippets Groups Projects
Commit 1476018f authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Changed log type for skipped tests

parent c94f75a4
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ def check_munin():
u.error('Munin directory "%s" not found.' % MUNIN_WWW_PATH)
return 1
else:
u.error('Munin is not installed.')
u.info('Munin is not installed, test skipped.')
return 2
# get cpu day graph of each host
......
......@@ -185,7 +185,7 @@ def main():
# check that Nginx dir exists
nginx_dir = "/etc/nginx/sites-enabled"
if not Path(nginx_dir).exists():
u.error("nginx dir does not exists ('%s')." % nginx_dir)
u.info("nginx dir does not exists ('%s'), test skipped." % nginx_dir)
exit(2)
# check that Wowza is installed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment