Files
kured/systemctl-path.patch
Jeff Kowalczyk cb0dc2b4dd - Update to version 1.20.0:
* chore: update release
  * Fix incorrect break
  * Add package comments to pass linters
  * fix lint of files
  * add golangci lint
  * Update Kured to support kubernetes 1.34
  * Fix bad formatting
- Packaging improvements:
  * Update to BuildRequires: golang(API) >= 1.24 matching go.mod
  * Rebase kured-imagePullPolicy.patch
  * Rebase systemctl-path.patch

- Update to version 1.19.0:
  * chore: update release manifests
  * bump kubernetes 0.32 libraries
  * build(deps): bump github/codeql-action from 3.29.10 to 3.29.11
  * build(deps): bump lycheeverse/lychee-action from 2.5.0 to 2.6.1
  * build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1
  * build(deps): bump actions/dependency-review-action from 4.7.2 to 4.7.3
  * build(deps): bump aquasecurity/trivy-action from 0.32.0 to 0.33.0
  * build(deps): bump actions/dependency-review-action from 4.7.1 to 4.7.2
  * build(deps): bump github/codeql-action from 3.29.9 to 3.29.10
  * Reduce periodics frequency
  * Validate external links for md updates only on PR
  * build(deps): bump docker/metadata-action from 5.7.0 to 5.8.0
  * build(deps): bump docker/login-action from 3.4.0 to 3.5.0
  * build(deps): bump lycheeverse/lychee-action from 2.4.1 to 2.5.0
  * build(deps): bump github/codeql-action from 3.29.2 to 3.29.8
  * build(deps): bump actions/checkout from 4.2.2 to 5.0.0

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=54
2025-08-30 20:00:51 +00:00

24 lines
1.1 KiB
Diff

From af6c6e783403978273208a45c137c273935604fb Mon Sep 17 00:00:00 2001
From: Johannes Kastl <kastl@b1-systems.de>
Date: Fri, 7 Jan 2022 11:57:28 +0100
Subject: [PATCH] cmd/kured/main.go: Fix path to systemctl
Signed-off-by: Johannes Kastl <kastl@b1-systems.de>
---
cmd/kured/main.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/kured/main.go b/cmd/kured/main.go
index a6b1c0e..a490348 100644
--- a/cmd/kured/main.go
+++ b/cmd/kured/main.go
@@ -163,7 +163,7 @@ func main() {
"Taint name applied during pending node reboot (to prevent receiving additional pods from other rebooting nodes). Disabled by default. Set e.g. to \"weave.works/kured-node-reboot\" to enable tainting.")
flag.StringVar(&rebootSentinelCommand, "reboot-sentinel-command", "",
"command for which a zero return code will trigger a reboot command")
- flag.StringVar(&rebootCommand, "reboot-command", "/bin/systemctl reboot",
+ flag.StringVar(&rebootCommand, "reboot-command", "/usr/bin/systemctl reboot",
"command to run when a reboot is required")
flag.IntVar(&concurrency, "concurrency", 1,
"amount of nodes to concurrently reboot. Defaults to 1")