2.3.0 • Published 5 years ago

denymount v2.3.0

Weekly downloads
606
License
Apache-2.0
Repository
github
Last release
5 years ago

denymount

Node.js library to prevent automatic mounting of specific disks on Mac OS X. For Mac OS X >= 10.9.

npm version dependencies Build Status

Installation

Install denymount by running:

$ npm install --save denymount

Documentation

denymount~denymount(disk, handler, options, callback)

Kind: inner method of denymount
Summary: Prevent automatic mounting of an OS X disk
Access: public

ParamTypeDefaultDescription
diskStringdisk
handlerfunctionhandler (callback)
optionsObjectoptions
options.autoMountOnSuccessBooleanfalseauto-mount on success
options.executablePathStringalternative path to the denymount binary executable invoked at runtime
callbackfunctioncallback (error)

Example

denymount('/dev/disk2', function(callback) {
  console.log('While this code runs, /dev/disk2 is ensured to not be auto-mounted');
  return callback(null, 'foo');
}, {
  autoMountOnSuccess: true
}, function(error, message) {
  if (error) {
    throw error;
  }

  console.log(message);
});

Tests

Run the test suite by doing:

$ npm test

Development

denymount wraps a native command line utility that must be built with Xcode 7.

If you make edits to the executable source make sure to build it afterwards with:

$ npm run build

This will build and place the compiled executable in the bin folder.

The command line utility can be used directly as follows:

$ ./bin/denymount diskName

The programme will keep running until you hit ctrl+C (or SIGINT/SIGTERM if sent to background).

Contribute

Support

If you're having any problem, please raise an issue on GitHub and the Resin.io team will be happy to help.

License

denymount is free software, and may be redistributed under the terms specified in the license.