summaryrefslogtreecommitdiffstats
path: root/sysprep/sysprep_operation_smolt_uuid.ml
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-04-21 22:27:39 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-04-21 22:28:15 +0100
commit8d41470b6fc81b742896996393812b274514bca2 (patch)
tree5efb749ed701c12f1bc9f3d737eb92fdbe0712ab /sysprep/sysprep_operation_smolt_uuid.ml
parent97ef9afca77ee81a6c0d1a30cf4d367d7cefa2e3 (diff)
downloadlibguestfs-8d41470b6fc81b742896996393812b274514bca2.tar.gz
libguestfs-8d41470b6fc81b742896996393812b274514bca2.tar.xz
libguestfs-8d41470b6fc81b742896996393812b274514bca2.zip
sysprep: Don't enable every option by default.
All current operations are enabled by default. Also: * The POD description is split into a heading and the description body. * An 'enabled_by_default' flag is added to the structure.
Diffstat (limited to 'sysprep/sysprep_operation_smolt_uuid.ml')
-rw-r--r--sysprep/sysprep_operation_smolt_uuid.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysprep/sysprep_operation_smolt_uuid.ml b/sysprep/sysprep_operation_smolt_uuid.ml
index a85aa9b3..85e788ec 100644
--- a/sysprep/sysprep_operation_smolt_uuid.ml
+++ b/sysprep/sysprep_operation_smolt_uuid.ml
@@ -36,7 +36,9 @@ let smolt_uuid_perform g root =
let smolt_uuid_op = {
name = "smolt-uuid";
- pod_description = "Remove the Smolt hardware UUID.";
+ enabled_by_default = true;
+ heading = "Remove the Smolt hardware UUID";
+ pod_description = None;
extra_args = [];
perform = smolt_uuid_perform;
}