diff options
author | Daniel Friesel <derf@finalrewind.org> | 2010-11-05 19:34:57 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2010-11-05 19:34:57 +0100 |
commit | b71ec7282385b72e7e5d7aaf99890a0890e38eda (patch) | |
tree | 443a6feacb55c5e4b71ef8e9564b41cd12e07ac7 /bin | |
parent | cc042f70b34f92b81f71957cc7c777a9c5d7e691 (diff) |
Remove useless unix_time function
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/icli | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -60,10 +60,6 @@ sub pretty_date { return time2str('%Y-%m-%d %H:%M:%S', $unix); } -sub unix_time { - return time2str('%s', localtime(time)); -} - sub read_objects_line { my ($line, $ref) = @_; @@ -306,7 +302,7 @@ sub dispatch_command { open(my $cmd_fh, '>', '/var/lib/icinga/rw/icinga.cmd') or die("Can't open: $!"); printf $cmd_fh ( "[%d] %s", - unix_time(), + time(), $str, ); close($cmd_fh) or die("Can't close: $!"); @@ -316,7 +312,7 @@ sub dispatch_command { sub recheck_host_all { my ($host) = @_; - dispatch_command('SCHEDULE_HOST_SVC_CHECKS', $host, unix_time()); + dispatch_command('SCHEDULE_HOST_SVC_CHECKS', $host, time()); say "Scheduled check of * on '$host'"; } @@ -325,7 +321,7 @@ sub recheck_service { if (have_service($host, $service)) { dispatch_command('SCHEDULE_SVC_CHECK', $host, $service, - unix_time()); + time()); say "Scheduled check of '$service' on '$host'"; } } |