commit: 8a9bfffe0feb3b3165392216370f13742a863ca3
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 15 01:31:35 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Jan 15 01:31:35 2018 +0000
URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=8a9bfffe
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)