Commit 4163fc5e authored by Alejandro E. Rendon's avatar Alejandro E. Rendon
Browse files

fixed Helper function: Get an available uid

parent 630c9b59
......@@ -36,7 +36,7 @@ exports.getLinuxUsers = (callback) => {
// exports.getLinuxId = (users, callback) => {
exports.getLinuxId = (callback) => {
const path = 'cut -d: -f4 /etc/passwd';
const path = 'cut -d: -f3 /etc/passwd';
exec(path, (err, stdout, stderr) => {
if(err) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment