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): ...@@ -228,7 +228,7 @@ def run_check(xymon):
if bad_home_directory: if bad_home_directory:
title = 'bad homeDirectory' 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: for home in bad_home_directory:
content += ''.join([str(home), '<br/>']) content += ''.join([str(home), '<br/>'])
xymon.section(title, content) xymon.section(title, content)
...@@ -236,7 +236,7 @@ def run_check(xymon): ...@@ -236,7 +236,7 @@ def run_check(xymon):
if no_ldap_user: if no_ldap_user:
title = 'no user for home' 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: for home in no_ldap_user:
content += ''.join([str(home), '<br/>']) content += ''.join([str(home), '<br/>'])
xymon.section(title, content) xymon.section(title, content)
...@@ -244,7 +244,7 @@ def run_check(xymon): ...@@ -244,7 +244,7 @@ def run_check(xymon):
if bad_nis_map: if bad_nis_map:
title = 'bad nismaps (home)' 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: for home in bad_nis_map:
content += ''.join([str(home), '<br/>']) content += ''.join([str(home), '<br/>'])
xymon.section(title, content) xymon.section(title, content)
...@@ -252,7 +252,7 @@ def run_check(xymon): ...@@ -252,7 +252,7 @@ def run_check(xymon):
if no_nis_map: if no_nis_map:
title = 'no nismap for home' 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: for home in no_nis_map:
content += ''.join([str(home), '<br/>']) content += ''.join([str(home), '<br/>'])
xymon.section(title, content) 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