From 3d8a48c69d1956bd6800ea6e3631f80974537c17 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 ada6e7e9..e7343191 100644 --- a/src/pylorax/installtree.py +++ b/src/pylorax/installtree.py @@ -366,7 +366,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)