diff options
author | James Moger <james.moger@gitblit.com> | 2011-06-28 20:12:51 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-06-28 20:12:51 -0400 |
commit | d39680e9f54322ddcb40b00503a8ee30aee6c99c (patch) | |
tree | d3cc3883fd44e0547663ff8c45ae6c5b69f3ab6b /distrib/uninstallService.cmd | |
parent | d0e26353e62d17a1f6b765a71e9bb45b54806d70 (diff) | |
download | gitblit-d39680e9f54322ddcb40b00503a8ee30aee6c99c.tar.gz gitblit-d39680e9f54322ddcb40b00503a8ee30aee6c99c.zip |
Changes for minor 0.5.1 release.v0.5.1
* Clarified SSL certificate generation and configuration in light of the
hostname verificiation that JGit currently does despite
the http.sslVerify=false setting.
* Added some troubleshooting information related to filesystem
permissions and reading repositories.
* Switched from JavaService to Apache Commons Daemon. Not sure what
happened to JavaService as it stopped working for me on Windows 7 with
Java 1.6.0_26. Commons Daemon accomplishes the same thing and offers a
nice service control utility.
Diffstat (limited to 'distrib/uninstallService.cmd')
-rw-r--r-- | distrib/uninstallService.cmd | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/distrib/uninstallService.cmd b/distrib/uninstallService.cmd index a483c55d..a40823fc 100644 --- a/distrib/uninstallService.cmd +++ b/distrib/uninstallService.cmd @@ -1 +1,5 @@ -javaservice -uninstall gitblit
\ No newline at end of file +@REM arch = x86, amd64, or ia32
+SET ARCH=amd64
+
+@REM Delete the gitblit service
+"%CD%\%ARCH%\prunsrv.exe" //DS//gitblit
\ No newline at end of file |