forked from rpms/dnf-plugins-core
26 lines
744 B
Diff
26 lines
744 B
Diff
|
From dc13ed6bab62a38ef74b00376e2ba05c82115e47 Mon Sep 17 00:00:00 2001
|
||
|
From: Nicola Sella <nsella@redhat.com>
|
||
|
Date: Thu, 8 Jul 2021 15:54:21 +0200
|
||
|
Subject: [PATCH] [needs-restarting] Fix wrong boot time (RhBug:1960437)
|
||
|
|
||
|
---
|
||
|
plugins/needs_restarting.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/plugins/needs_restarting.py b/plugins/needs_restarting.py
|
||
|
index 1fedb73..91dbe66 100644
|
||
|
--- a/plugins/needs_restarting.py
|
||
|
+++ b/plugins/needs_restarting.py
|
||
|
@@ -199,7 +199,7 @@ class ProcessStart(object):
|
||
|
|
||
|
@staticmethod
|
||
|
def get_boot_time():
|
||
|
- return int(os.stat('/proc/1/cmdline').st_mtime)
|
||
|
+ return int(os.stat('/proc/1').st_mtime)
|
||
|
|
||
|
@staticmethod
|
||
|
def get_sc_clk_tck():
|
||
|
--
|
||
|
libgit2 1.1.0
|
||
|
|