You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
727 B
JavaScript

"use strict";
module.exports = {
getVersions: require("./commands/version"),
getPhysicalVolumes: require("./commands/get-physical-volumes"),
getVolumeGroups: require("./commands/get-volume-groups"),
getLogicalVolumes: require("./commands/get-logical-volumes"),
createPhysicalVolume: require("./commands/create-physical-volume"),
destroyPhysicalVolume: require("./commands/destroy-physical-volume"),
createVolumeGroup: require("./commands/create-volume-group"),
addVolumeToVolumeGroup: require("./commands/add-volume-to-volume-group")
};
// TODO: Need to check if cache service running?
// TODO: Wrap errors in commands in the appropriate chained error types, beyond a generic CommandExecutionFailed from exec-binary?