Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 8a8ea12

Browse files
committed
virt-install: --error_policy s/none/ignore/
1 parent e4fb86a commit 8a8ea12

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

man/en/virt-install.pod.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ Disk IO backend. Can be either "threads" or "native".
480480
=item B<error_policy>
481481

482482
How guest should react if a write error is encountered. Can be one of
483-
"stop", "none", or "enospace"
483+
"stop", "ignore", or "enospace"
484484

485485
=item B<serial>
486486

virtinst/VirtualDisk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def disk_type_to_target_prop(disk_type):
348348
return "dir"
349349
return "file"
350350

351-
error_policies = ["none", "stop", "enospace"]
351+
error_policies = ["ignore", "stop", "enospace"]
352352

353353
@staticmethod
354354
def path_exists(conn, path):

0 commit comments

Comments
 (0)