@@ -206,15 +206,17 @@ The `name` parameter specifies the name of the created service. The optional
206
206
to install a service
207
207
* ` username ` - For Windows platforms a username and password can be specified,
208
208
the service will be run using these credentials when started, see the
209
- ` CreatedService ()` functions [ win32 API documentation] [ createdservice ] for
209
+ ` CreateService ()` functions [ win32 API documentation] [ createservice ] for
210
210
details on the format of the username, on all other platforms this parameter
211
211
is ignored
212
212
* ` password ` - See the ` username ` parameter
213
213
* ` systemdWantedBy ` - For when systemd will be used a target can be specified
214
214
for the ` WantedBy ` attribute under the ` [Install] ` section in the generated
215
215
systemd unit file, defaults to ` multi-user.target `
216
+ * ` dependencies ` - AN array of strings specifying other services this service
217
+ depends on, this is optional
216
218
217
- [ createdservice ] : https://msdn.microsoft.com/en-us/library/windows/desktop/ms682450(v=vs.85).aspx " CreatedService ()"
219
+ [ createservice ] : https://msdn.microsoft.com/en-us/library/windows/desktop/ms682450(v=vs.85).aspx " CreateService ()"
218
220
219
221
The service will be set to automatically start at boot time, but not started.
220
222
The service can be started using the ` net start "my-service" ` command on
@@ -377,6 +379,13 @@ Bug reports should be sent to <stephen.vickers.sv@gmail.com>.
377
379
(added ` WantedBy ` attribute to generated systemd unit)
378
380
* Umask not set in system 5 init script
379
381
382
+ ## Version 1.5.0 - 06/01/2018
383
+
384
+ * Address warnings for 'v8::Value::ToUint32 was declared deprecated'
385
+ * Override the stdout/stderr handles instead of using the deprecated
386
+ ` __defineGetter__() ` function
387
+ * Specify dependancies when adding a service
388
+
380
389
# Roadmap
381
390
382
391
Suggestions and requirements should be sent to <stephen.vickers.sv@gmail.com >.
0 commit comments