Skip to content

Commit

Permalink
Update indentation to new travis standard
Browse files Browse the repository at this point in the history
  • Loading branch information
dynamiccast committed Oct 31, 2016
1 parent 325e39b commit 7982da3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions api/models/Storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@ module.exports = {
values.hostname,
values.port, {
command: ['useradd',
values.username,
'--create-home',
'--groups',
'users'
],
values.username,
'--create-home',
'--groups',
'users'
],
wait: true
})
.then(() => {
return PlazaService.exec(
values.hostname,
values.port, {
command: ['smbpasswd',
'-a',
values.username
],
'-a',
values.username
],
stdin: values.password + '\n' + values.password,
wait: true
});
Expand Down
16 changes: 8 additions & 8 deletions api/models/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,21 +84,21 @@ module.exports = {
config.teamStorageAddress,
config.teamStoragePort, {
command: ['useradd',
values.username,
'--create-home',
'--groups',
'users'
],
values.username,
'--create-home',
'--groups',
'users'
],
wait: true
})
.then(() => {
return PlazaService.exec(
config.teamStorageAddress,
config.teamStoragePort, {
command: ['smbpasswd',
'-a',
values.username
],
'-a',
values.username
],
stdin: values.password + '\n' + values.password,
wait: true
});
Expand Down

0 comments on commit 7982da3

Please sign in to comment.