1.1.0 • Published 10 years ago

sysuser v1.1.0

Weekly downloads
28
License
-
Repository
github
Last release
10 years ago

Installation

npm install sysuser

What does it do?

sysUser is a simple wrapper for unix commands such as useradd, userdel, & usermod to make changes to system users. In order for this to work the calling program MUST be running as root or have permissions to the user commands in command line. This NPM module is still in early development and has only been tested on the listed operating systems:

  • CentOS 6

Coding Examples

var sysUser = require('sysuser')();

// create user
sysUser.add('appUser',['-d','/home/custom/HomeDir'],function(err,uid){
	if(err){
		console.log('ERROR',err);
	}else{
		console.log('removed');
	}
});
1.1.0

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.1.0

10 years ago