Footprintless::App::Command::service - Performs an action on one or more services.
version 1.25
    # one service at a time:
    
    fpl service foo.prod.web.service kill
    fpl service foo.dev.app.service start
    fpl service bar.qa.db.service status
    fpl service baz.beta.support.service stop
    # or multiple services:
    
    # starts:
    #   - baz.beta.support.service
    #   - baz.beta.web.service
    #   - baz.beta.app.service
    fpl service baz.beta start support.service web.service app.service
Performs actions on a service.
Base actions:
    kill: kills the service abruptly
   start: starts the service
  status: checks the status of the service (running/stopped)
    stop: stops the service
Additional actions can be defined by your entity based on the service commands actual capabilities.
Lucas Theisen <lucastheisen@pastdev.com>
This software is copyright (c) 2016 by Lucas Theisen.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Please see those modules/websites for more information related to this module.