[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH 1/2] Don't traceback on read only (write protected) disks (#471883)
- From: Joel Granados <jgranado redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Re: [PATCH 1/2] Don't traceback on read only (write protected) disks (#471883)
- Date: Wed, 6 May 2009 14:09:40 +0200
looks good.
On Wed, May 06, 2009 at 01:58:54PM +0200, Hans de Goede wrote:
> This is a backport of a small part of commit:
> http://git.fedorahosted.org/git/?p=anaconda.git;a=commitdiff;h=1380f13f0dad0108b8ed6ac02e249f53fb43156b
>
> Which stops us from backtracing when we try to write a partitiontable to
> a write protected disk (for example a writeprotected sdcard).
> ---
> partedUtils.py | 11 ++++++++++-
> 1 files changed, 10 insertions(+), 1 deletions(-)
>
> diff --git a/partedUtils.py b/partedUtils.py
> index 4b14329..0be98db 100644
> --- a/partedUtils.py
> +++ b/partedUtils.py
> @@ -959,7 +959,16 @@ class DiskSet:
> def savePartitions (self):
> """Write the partition tables out to the disks."""
> for disk in self.disks.values():
> - disk.commit()
> + log.info("disk.commit() for %s" % (disk.dev.path,))
> + try:
> + disk.commit()
> + except:
> + # if this fails, remove the disk so we don't use it later
> + # Basically if we get here, badness has happened and we want
> + # to prevent tracebacks from ruining the day any more.
> + del disk
> + continue
> +
> # FIXME: this belongs in parted itself, but let's do a hack...
> if iutil.isMactel() and disk.type.name == "gpt" and \
> os.path.exists("/usr/sbin/gptsync"):
> --
> 1.6.2.2
>
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list redhat com
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list
--
Joel Andres Granados
Brno, Czech Republic, Red Hat.
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]