mirror of
https://github.com/kubereboot/kured.git
synced 2026-02-14 09:29:51 +00:00
reboot if forceRebootSentinel exists
This commit is contained in:
@@ -124,7 +124,7 @@ func forceRebootsentinelExists() bool {
|
||||
}
|
||||
|
||||
func rebootRequired() bool {
|
||||
if sentinelExists() {
|
||||
if sentinelExists() || forceRebootsentinelExists() {
|
||||
log.Infof("Reboot required")
|
||||
return true
|
||||
} else {
|
||||
@@ -135,7 +135,7 @@ func rebootRequired() bool {
|
||||
|
||||
func rebootBlocked() bool {
|
||||
if forceRebootsentinelExists() {
|
||||
log.Infof("Force reboot sentinel %v exists, force rebooting activated",forceRebootSentinel)
|
||||
log.Infof("Force reboot sentinel %v exists, force rebooting activated", forceRebootSentinel)
|
||||
return false
|
||||
}
|
||||
if prometheusURL != "" {
|
||||
|
||||
Reference in New Issue
Block a user