aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-01-14 20:31:35 -0500
committerAnthony G. Basile <blueness@gentoo.org>2018-01-14 20:31:35 -0500
commit8a9bfffe0feb3b3165392216370f13742a863ca3 (patch)
tree83e41014d28f9a5c4acdad05aed7fff1deb67db0
parentgrs/Netboot.py: return to using busybox from system root (diff)
downloadgrss-8a9bfffe0feb3b3165392216370f13742a863ca3.tar.gz
grss-8a9bfffe0feb3b3165392216370f13742a863ca3.tar.bz2
grss-8a9bfffe0feb3b3165392216370f13742a863ca3.zip
grs/Netboot.py: fix location of ISO tarball under /usr/share
-rw-r--r--grs/Netboot.py2
1 files changed, 1 insertions, 1 deletions
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)