diff options
author | Joel Andres Granados <jgranado@redhat.com> | 2008-08-08 18:28:15 +0200 |
---|---|---|
committer | Joel Andres Granados <jgranado@redhat.com> | 2008-08-08 18:28:15 +0200 |
commit | bf4aee1c8184e5e5318accb6eff445964aa655d2 (patch) | |
tree | 0af60f89c8056f3ca99670050b96c5a6d59d718c | |
parent | 1d37403be0fce8bb58e56039cc207aa9505f737e (diff) | |
download | firstaidkit-bf4aee1c8184e5e5318accb6eff445964aa655d2.tar.gz firstaidkit-bf4aee1c8184e5e5318accb6eff445964aa655d2.tar.xz firstaidkit-bf4aee1c8184e5e5318accb6eff445964aa655d2.zip |
The Grub plugin must use a persistent Backup space.
-rw-r--r-- | plugins/grub/grub.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/grub/grub.py b/plugins/grub/grub.py index 8056218..c56df3e 100644 --- a/plugins/grub/grub.py +++ b/plugins/grub/grub.py @@ -61,7 +61,7 @@ class Grub(Plugin): self.issue_grub_image = SimpleIssue(self.name, "Bad grub stage1 image.") # Initialize the backup space. - self.backupSpace = self._backups.getBackup(str(self)) + self.backupSpace = self._backups.getBackup(str(self), persistent = True) def prepare(self): self._reporting.info("Initializing the search for all the grub " \ |