Browse Source

NSSM 2.7.

Iain Patterson 13 years ago
parent
commit
5d8129f70e
2 changed files with 6 additions and 3 deletions
  1. 4 1
      README.txt
  2. 2 2
      nssm.h

+ 4 - 1
README.txt

@@ -1,5 +1,5 @@
 NSSM: The Non-Sucking Service Manager
 NSSM: The Non-Sucking Service Manager
-Version 2.6, 2010-11-19
+Version 2.7, 2011-01-25
 
 
 NSSM is a service helper program similar to srvany and cygrunsrv.  It can 
 NSSM is a service helper program similar to srvany and cygrunsrv.  It can 
 start any application as an NT service and will restart the service if it 
 start any application as an NT service and will restart the service if it 
@@ -158,6 +158,9 @@ Credits
 Thanks to Bernard Loh for finding a bug with service recovery.
 Thanks to Bernard Loh for finding a bug with service recovery.
 Thanks to Benjamin Mayrargue (www.softlion.com) for adding 64-bit support.
 Thanks to Benjamin Mayrargue (www.softlion.com) for adding 64-bit support.
 Thanks to Joel Reingold for spotting a command line truncation bug.
 Thanks to Joel Reingold for spotting a command line truncation bug.
+Thanks to Arve Knudsen for spotting that child processes of the monitored
+application could be left running on service shutdown, and that a missing
+registry value for AppDirectory confused NSSM.
 
 
 Licence
 Licence
 -------
 -------

+ 2 - 2
nssm.h

@@ -15,8 +15,8 @@
 int str_equiv(const char *, const char *);
 int str_equiv(const char *, const char *);
 
 
 #define NSSM "nssm"
 #define NSSM "nssm"
-#define NSSM_VERSION "2.6"
-#define NSSM_DATE "2010-11-19"
+#define NSSM_VERSION "2.7"
+#define NSSM_DATE "2011-01-25"
 #define NSSM_RUN "run"
 #define NSSM_RUN "run"
 
 
 /*
 /*