// This controls whether we attempt to undo the effects of the command
// e.g. when the 'mount' step fails.
boolean ok = false;
try {
final SMBFileSystem fs = type.create(dev, true);
fss.registerFileSystem(fs);
try {
fss.mount(mountPoint.toString(), fs, null);
ok = true;
} finally {