Accepting request 214722 from Base:System

- Do not fail when shrinking the partition in non-interactive mode.  
- modified patches:
  * parted-resize-command.patch

OBS-URL: https://build.opensuse.org/request/show/214722
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/parted?expand=0&rev=90
This commit is contained in:
Stephan Kulow 2014-01-24 20:42:20 +00:00 committed by Git OBS Bridge
commit 778ff63449
2 changed files with 8 additions and 1 deletions

View File

@ -76,7 +76,7 @@ Index: parted-3.1/parted/parted.c
+ start, end))
+ goto error_destroy_constraint;
+ /* warn when shrinking partition - might lose data */
+ if (part->geom.end < oldend)
+ if (!opt_script_mode && (part->geom.end < oldend))
+ if (ped_exception_throw (
+ PED_EXCEPTION_WARNING,
+ PED_EXCEPTION_YES_NO,

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Jan 22 16:15:13 UTC 2014 - puzel@suse.com
- Do not fail when shrinking the partition in non-interactive mode.
- modified patches:
* parted-resize-command.patch
-------------------------------------------------------------------
Wed Jan 8 15:32:34 UTC 2014 - puzel@suse.com