mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
moved to actual live plugin directory and ported to v2
This commit is contained in:
parent
d149ea5222
commit
62e780c74a
1 changed files with 0 additions and 27 deletions
|
@ -1,27 +0,0 @@
|
|||
import os
|
||||
import datetime
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
|
||||
class CallbackModule(object):
|
||||
"""
|
||||
This callback module tells you how long your plays ran for.
|
||||
"""
|
||||
|
||||
start_time = datetime.now()
|
||||
|
||||
def __init__(self):
|
||||
start_time = datetime.now()
|
||||
print "Timer plugin is active."
|
||||
|
||||
def days_hours_minutes_seconds(self, timedelta):
|
||||
minutes = (timedelta.seconds//60)%60
|
||||
r_seconds = timedelta.seconds - (minutes * 60)
|
||||
return timedelta.days, timedelta.seconds//3600, minutes, r_seconds
|
||||
|
||||
def playbook_on_stats(self, stats):
|
||||
end_time = datetime.now()
|
||||
timedelta = end_time - self.start_time
|
||||
print "Playbook run took %s days, %s hours, %s minutes, %s seconds" % (self.days_hours_minutes_seconds(timedelta))
|
||||
|
||||
|
Loading…
Reference in a new issue