From 10e1921d30a66db85d8707e554e0eeb5efbb8b00 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 10 May 2015 23:00:08 +0300 Subject: add service mgmt lib & utils --- utils/uninstall_service.cpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 utils/uninstall_service.cpp (limited to 'utils/uninstall_service.cpp') diff --git a/utils/uninstall_service.cpp b/utils/uninstall_service.cpp new file mode 100644 index 0000000..1a6c44d --- /dev/null +++ b/utils/uninstall_service.cpp @@ -0,0 +1,31 @@ +/** + * \author Egor Tensin + * \date 2015 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#include "libservice/interface.hpp" + +#include +#include + +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]).uninstall(); + } + catch (const std::system_error& e) + { + std::cerr << e.what() << "\n"; + return 1; + } + return 0; +} -- cgit v1.2.3