/**
  * Creates a container. Location is currently ignored.
  *
  * @param location currently ignored
  * @param container container name
  * @return true if the container was created, false otherwise
  */
 @Override
 public boolean createContainerInLocation(@Nullable Location location, String container) {
   return sync.createVault(container) != null;
 }