Skip to content
Snippets Groups Projects
Commit 6b4f0f62 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

roles/ipareplica/library/ipareplica_enable_ipa.py: Do not use textwrap

parent dd321b20
Branches
Tags
No related merge requests found
...@@ -134,12 +134,12 @@ def main(): ...@@ -134,12 +134,12 @@ def main():
# Print a warning if CA role is only installed on one server # Print a warning if CA role is only installed on one server
if len(ca_servers) == 1: if len(ca_servers) == 1:
msg = textwrap.dedent(u''' msg = u'''
WARNING: The CA service is only installed on one server ({}). WARNING: The CA service is only installed on one server ({}).
It is strongly recommended to install it on another server. It is strongly recommended to install it on another server.
Run ipa-ca-install(1) on another master to accomplish this. Run ipa-ca-install(1) on another master to accomplish this.
'''.format(ca_servers[0])) '''.format(ca_servers[0])
ansible_module.warn(msg) ansible_module.debug(msg)
# done # # done #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment