use of com.iwave.ext.linux.command.RescanHBAsCommand in project coprhd-controller by CoprHD.
the class RescanHBAs method execute.
@Override
public void execute() throws Exception {
RescanHBAsCommand command = new RescanHBAsCommand();
command.setHbas(hbas);
executeCommand(command, SHORT_TIMEOUT);
}
use of com.iwave.ext.linux.command.RescanHBAsCommand in project coprhd-controller by CoprHD.
the class LinuxSystemCLI method rescan.
@Override
public void rescan() throws Exception {
ListHBAInfoCommand hbaCommand = new ListHBAInfoCommand();
executeCommand(hbaCommand, SecureShellSupport.SHORT_TIMEOUT);
RescanHBAsCommand command = new RescanHBAsCommand();
command.setHbas(hbaCommand.getResults());
executeCommand(command, SecureShellSupport.SHORT_TIMEOUT);
}
Aggregations