/** Delete minor, from DRBD 8.4. */
public static boolean delMinor(final Host host, final String blockDevice, final Application.RunMode runMode) {
final Map<String, String> replaceHash = new HashMap<String, String>();
replaceHash.put(DRBDDEV_PLACE_HOLDER, blockDevice);
final String command = host.getDistCommand("DRBD.delMinor", replaceHash);
final SshOutput ret = execCommand(host, command, null, true, runMode);
return ret.getExitCode() == 0;
}