You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xenvm/xenvm_common.ml
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -493,3 +493,8 @@ let action_arg =
493
493
Activation of a logical volume creates a symbolic link /dev/VolumeGroupName/LogicalVolumeName pointing to the device node. This link is removed on deactivation. All software and scripts should access the device through this symbolic link and present this as the name of the device. The location and name of the underlying device node may depend on the distribution and configuration (e.g. udev) and might change from release to release."in
494
494
let a =Arg.(value & opt (some char) None& info ["a"] ~docv:"ACTIVATE"~doc) in
495
495
Term.(pure parse_action $ a)
496
+
497
+
let offline_arg =
498
+
let doc ="Assume xenvmd is offline and read metadata from the disk"
499
+
in
500
+
Arg.(value & flag & info [ "offline" ] ~docv:"OFFLINE"~doc)
0 commit comments