throw new OutOfServiceException("Temporarily out of service");
if (mhost.getMounts().size() > 0) {
Random random = new Random();
MHostMountVO[] mounts = (MHostMountVO[])mhost.getMounts().toArray();
MHostMountVO mount = mounts[random.nextInt(mounts.length)];
S3BucketAdapter bucketAdapter = getStorageHostBucketAdapter(mount.getShost());
bucketAdapter.createContainer(mount.getMountPath(), (null != overrideName ? overrideName : bucketName));
return new OrderedPair<SHostVO, String>(mount.getShost(), mount.getMountPath());
}
// To make things simple, only allow one local mounted storage root TODO - Change in the future
String localStorageRoot = ServiceProvider.getInstance().getStartupProperties().getProperty("storage.root");
if (localStorageRoot != null) {