Skip to content
Snippets Groups Projects
Commit b713b69b authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Add missing newlines

parent c4493c11
No related branches found
No related tags found
No related merge requests found
......@@ -228,7 +228,7 @@ def run_check(xymon):
if bad_home_directory:
title = 'bad homeDirectory'
content = 'the homeDirectory attributes home name does not match the username'
content = 'the homeDirectory attributes home name does not match the username<br/><br/>'
for home in bad_home_directory:
content += ''.join([str(home), '<br/>'])
xymon.section(title, content)
......@@ -236,7 +236,7 @@ def run_check(xymon):
if no_ldap_user:
title = 'no user for home'
content = 'home directory without a corresponding ldap user'
content = 'home directory without a corresponding ldap user<br/><br/>'
for home in no_ldap_user:
content += ''.join([str(home), '<br/>'])
xymon.section(title, content)
......@@ -244,7 +244,7 @@ def run_check(xymon):
if bad_nis_map:
title = 'bad nismaps (home)'
content = 'nismap does not match home path on the filesystem'
content = 'nismap does not match home path on the filesystem<br/><br/>'
for home in bad_nis_map:
content += ''.join([str(home), '<br/>'])
xymon.section(title, content)
......@@ -252,7 +252,7 @@ def run_check(xymon):
if no_nis_map:
title = 'no nismap for home'
content = 'home directory without a corresponding nismap entry'
content = 'home directory without a corresponding nismap entry<br/><br/>'
for home in no_nis_map:
content += ''.join([str(home), '<br/>'])
xymon.section(title, content)
......
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