Skip to content

Commit 5de5dbb

Browse files
committed
Merge branch 'master' of github.com:coreybutler/node-windows
2 parents 2764441 + f930f8b commit 5de5dbb

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@
99

1010
**Update 2/1/2020**
1111

12-
Several PR's that have been outstanding for months (or even years) have been merged (unless there were merge conflicts), which is why this version is tagged as "1.0.0-beta.1", despite the fact v0.1.14 has been used in production for years by over 500,000 processes. I would use the latest version in production apps.
12+
Several PR's that have been outstanding for months (or even years) have been merged (unless there were merge conflicts), which is why this version is tagged as "1.0.0-beta.1", despite the fact v0.1.14 has been used in production for years by over 600,000 processes. I would use the latest version in production apps.
1313

1414
---
15-
I no longer have enough time to properly maintain this project and am seeking a new primary maintainer (or donations to help motivate one).
1615

17-
This project has gained traction for two reasons:
16+
**Sponsors (as of 2020)**
1817

19-
1. It works well on Windows.
20-
1. The same API can be used on macOS and Linux.
21-
22-
The ideal maintainer would also support or at least closely work with the maintainer of ([node-mac](https://github.com/coreybutler/node-mac) & [node-linux](https://github.com/coreybutler/node-linux)). Please get in touch if you are interested in taking over.
18+
<table cellpadding="10" cellspacing="0" border="0">
19+
<tr>
20+
<td><a href="https://metadoc.io"><img src="https://github.com/coreybutler/staticassets/raw/master/sponsors/metadoclogobig.png" width="200px"/></a></td>
21+
<td><a href="https://butlerlogic.com"><img src="https://github.com/coreybutler/staticassets/raw/master/sponsors/butlerlogic_logo.png" width="200px"/></a></td>
22+
</tr>
23+
</table>
2324

2425
---
2526

lib/daemon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ var daemon = function(config){
222222
enumerable: true,
223223
writable: false,
224224
configurable: false,
225-
value: config.abortOnError instanceof Boolean ? config.abortOnError : false
225+
value: config.abortOnError === true ? true : false
226226
},
227227

228228
/**

lib/winsw.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ module.exports = {
125125
serviceaccount: [
126126
{domain: config.logOnAs.domain || 'NT AUTHORITY'},
127127
{user: config.logOnAs.account || 'LocalSystem'},
128-
{password: config.logOnAs.password || ''}
128+
{password: config.logOnAs.password || ''},
129+
{allowservicelogon: 'true'}
129130
]
130131
});
131132
}

0 commit comments

Comments
 (0)