diff options
Diffstat (limited to 'utils/stop_service.cpp')
-rw-r--r-- | utils/stop_service.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/utils/stop_service.cpp b/utils/stop_service.cpp deleted file mode 100644 index 48b4c92..0000000 --- a/utils/stop_service.cpp +++ /dev/null @@ -1,32 +0,0 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ - -#include "libservice/all.hpp" - -#include <exception> -#include <iostream> - -int main(int argc, char* argv[]) -{ - if (argc != 2) - { - std::cout << "Usage: " << argv[0] << " NAME\n"; - return 1; - } - - try - { - libservice::Service::open(libservice::ServiceManager::open(), argv[1]).stop(); - } - catch (const std::exception& e) - { - std::cerr << e.what() << "\n"; - return 1; - } - return 0; -} |