Sha256: 9b4918b1efd4eef279f47c5b6588f4c49522b0ea8c9b4d707329d794ed804d15

Contents?: true

Size: 2 KB

Versions: 4

Compression:

Stored size: 2 KB

Contents

# Control script for the KBServer service.

require 'optparse'
require 'win32/service'
include Win32

# You will want to change these values.
kbserver_home = 'C:\kbserver'
kbserver_prog = kbserver_home + '\kbserver_daemon.rb'
kbserver_svc = 'KirbyBaseServerSvc'
kbserver_name = 'KirbyBase Database Server'

OPTIONS = {}

ARGV.options do |opts|
    opts.on("-d",     "--delete",      "Delete the service") { 
     OPTIONS[:delete] = true }
    opts.on("-s",     "--start",       "Start the service") { 
     OPTIONS[:start] = true }
    opts.on("-x",     "--stop",        "Stop the service") { 
     OPTIONS[:stop] = true }
    opts.on("-i",     "--install",     "Install the service") { 
     OPTIONS[:install] = true }
    opts.on("-h",     "--help",        "Show this help message") { 
     puts opts; exit }
    opts.parse!
end

# Install the service.
if OPTIONS[:install]
    svc = Service.new
    svc.create_service do |s|
        s.service_name = kbserver_svc
        s.display_name = kbserver_name
        s.binary_path_name = 'c:\ruby\bin\ruby.exe ' + kbserver_prog
        # This is required for now - bug in win32-service
        s.dependencies = [] 
    end
    svc.close
    puts "KirbyBase Server service installed"
end    

# Start the service.
if OPTIONS[:start]
    Service.start(kbserver_svc)
    started = false
    while started == false
        s = Service.status(kbserver_svc)
        started = true if s.current_state == "running"
        break if started == true
        puts "One moment, " + s.current_state
        sleep 1
    end
    puts "KirbyBase Server service started"
end

# Stop the service.
if OPTIONS[:stop]
    begin
        Service.stop(kbserver_svc)
    rescue
    end    
    puts "KirbyBase Server service stopped"
end

# Delete the service.  Stop it first.
if OPTIONS[:delete]
    begin
        Service.stop(kbserver_svc)
    rescue
    end
    Service.delete(kbserver_svc)    
    puts "KirbyBase Server service deleted"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
KirbyBase-2.5.2 examples/kbserver_as_win32_service/kbserverctl.rb
KirbyBase-2.6 examples/kbserver_as_win32_service/kbserverctl.rb
KirbyBase-2.5 examples/kbserver_as_win32_service/kbserverctl.rb
KirbyBase-2.5.1 examples/kbserver_as_win32_service/kbserverctl.rb