/** @see com.eucalyptus.bootstrap.Bootstrapper#enable() */ @Override public boolean enable() throws Exception { BlockStorage.enable(); return true; }
@Override public boolean start() throws Exception { LOG.debug("Starting BlockStorage"); BlockStorage.configure(); return true; }
/** @see com.eucalyptus.bootstrap.Bootstrapper#destroy() */ @Override public void destroy() throws Exception { LOG.debug("Destroying BlockStorage service"); BlockStorage.stop(); }
/** @see com.eucalyptus.bootstrap.Bootstrapper#check() */ @Override public boolean check() throws Exception { BlockStorage.check(); return true; }
/** @see com.eucalyptus.bootstrap.Bootstrapper#stop() */ @Override public boolean stop() throws Exception { LOG.debug("Stopping BlockStorage"); BlockStorage.stop(); return true; }