From 1009ef9df0951821e0a7e8194e6677394fff003c Mon Sep 17 00:00:00 2001 From: Martin Gracik Date: Fri, 8 Apr 2011 10:40:38 +0200 Subject: [PATCH] Provide shutdown on s390x (#694518) --- src/pylorax/installtree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/installtree.py b/src/pylorax/installtree.py index 4a63af5f..650eabca 100644 --- a/src/pylorax/installtree.py +++ b/src/pylorax/installtree.py @@ -338,7 +338,7 @@ class LoraxInstallTree(BaseLoraxClass): if self.basearch in ("s390", "s390x"): # copy shutdown src = joinpaths(self.root, "usr", self.libdir, "anaconda/shutdown") - dst = joinpaths(self.root, "sbin", "init") + dst = joinpaths(self.root, "sbin", "shutdown") os.unlink(dst) shutil.copy2(src, dst)