From 8a9bfffe0feb3b3165392216370f13742a863ca3 Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Sun, 14 Jan 2018 20:31:35 -0500 Subject: grs/Netboot.py: fix location of ISO tarball under /usr/share --- grs/Netboot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Netboot.py b/grs/Netboot.py index 976a24d..33c7b9d 100644 --- a/grs/Netboot.py +++ b/grs/Netboot.py @@ -119,7 +119,7 @@ class Netboot(HashIt): # locating the tarball if do_cd == 'cd': # TODO: Before a regular release, we'll have to fix this path - tarball_path = '/usr/share/grs-9999/ISO-1.tar.gz' + tarball_path = '/usr/share/grs/ISO-1.tar.gz' cmd = 'tar --xattrs -xf %s -C %s' % (tarball_path, self.kernelroot) Execute(cmd, timeout=120, logfile=self.logfile) -- cgit v1.2.3-65-gdbad