diff --git a/CHANGELOG.md b/CHANGELOG.md index 4971a39..d577aa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ -## 1.3.0 (pend-ii-ng) +## 1.3.0 (2014-07-03) +* `--no-ask` is now known as `--know` +* (portable) shell sub-string matching without echo +* do a service update when already installed (on windoze) + better removal +* include a service trinidad_init_service.log file of commands executed +* configure out redirection as well as pid file (+ log path) on windoze * fix uninstall failing (alwo try supporting RH standarts) * revised service id/name/desc configuration (to be 'more' similar on platforms) * improved java_home detection and error message diff --git a/README.md b/README.md index 495495a..c86b79a 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ are there) : own configuration (*config/trinidad.yml*) file used when setting up the server ! -### Unix +### Linux #### Requirements @@ -99,8 +99,8 @@ It is not recommended that you mix the `-user` flag with the `run_user` option ! #### Uninstall -Manage as every other rc.d, assuming `update-rc.d -f /etc/init.d/trinidad defaults` -you can uninstall using : +manage as every other service (e.g. `update-rc.d -f trinidad defaults` on Ubuntu) +you can even uninstall (will attempt to delete the script as well) using : $ [sudo] trinidad_init_service --uninstall /etc/init.d/trinidad @@ -110,14 +110,19 @@ you can uninstall using : #### Execution Open the **Services** panel under **Administrative Tools** and look for a service -called **Trinidad** (or whatever name you have chosen). +called **Trinidad** (or whatever name you have chosen) then *Start* it. + +By default the service is not setup to auto start during boot, that can be changed +from the command-line or using the Windows Services application. #### Uninstall -To remove the service you're going to need the service id (name), than run : +on Windows uninstallation requires to pass the service name (if not default) : - $ trinidad_init_service --uninstall Trinidad + $ jruby -S trinidad_init_service --uninstall Trinidad +Please note that when the service gets uninstalled (on Windows) usually a restart +is needed for it to be installable again. ## Copyright diff --git a/lib/trinidad_init_services/version.rb b/lib/trinidad_init_services/version.rb index ff59a86..8f9b2e8 100644 --- a/lib/trinidad_init_services/version.rb +++ b/lib/trinidad_init_services/version.rb @@ -1,5 +1,5 @@ module Trinidad module InitServices - VERSION = '1.2.4.DEV' + VERSION = '1.3.0' end end