mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
Modify output banners to have constant length and use dashes instead
of "-" to be less visually heavy (unless cowsay is installed of course)
This commit is contained in:
parent
e9d11173cd
commit
bc0be456da
2 changed files with 10 additions and 6 deletions
|
@ -143,7 +143,11 @@ def banner(msg):
|
|||
(out, err) = cmd.communicate()
|
||||
return "%s\n" % out
|
||||
else:
|
||||
return "\n%s ********************* " % msg
|
||||
width = 78 - len(msg)
|
||||
if width < 3:
|
||||
width = 3
|
||||
filler = "-" * width
|
||||
return "\n%s %s " % (msg, filler)
|
||||
|
||||
def command_generic_msg(hostname, result, oneline, caption):
|
||||
''' output the result of a command run '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue