mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
parent
9f937a9bc0
commit
10d5aabd36
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*
|
||||
*/
|
||||
@ -127,6 +127,15 @@ class Config {
|
||||
*/
|
||||
Status getMD5(std::string& hashString);
|
||||
|
||||
/**
|
||||
* @brief Check to ensure that the config is accessible and properly
|
||||
* formatted
|
||||
*
|
||||
* @return an instance of osquery::Status, indicating the success or failure
|
||||
* of the operation.
|
||||
*/
|
||||
static osquery::Status checkConfig();
|
||||
|
||||
private:
|
||||
/**
|
||||
* @brief Default constructor.
|
||||
@ -173,7 +182,6 @@ class Config {
|
||||
* @return an instance of osquery::Status, indicating the success or failure
|
||||
* of the operation.
|
||||
*/
|
||||
|
||||
static osquery::Status genConfig(std::string& conf);
|
||||
|
||||
private:
|
||||
|
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*
|
||||
*/
|
||||
@ -138,4 +138,9 @@ Status Config::getMD5(std::string& hash_string) {
|
||||
|
||||
return Status(0, "OK");
|
||||
}
|
||||
|
||||
Status Config::checkConfig() {
|
||||
OsqueryConfig c;
|
||||
return genConfig(c);
|
||||
}
|
||||
}
|
||||
|
@ -3,11 +3,11 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include <boost/thread.hpp>
|
||||
|
||||
#include <glog/logging.h>
|
||||
@ -26,9 +26,24 @@ DEFINE_osquery_flag(bool, daemonize, false, "Run as daemon (osqueryd only).");
|
||||
}
|
||||
#endif
|
||||
|
||||
namespace osquery {
|
||||
DEFINE_osquery_flag(bool,
|
||||
config_check,
|
||||
false,
|
||||
"Check the format and accessibility of the daemon");
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
osquery::initOsquery(argc, argv, osquery::OSQUERY_TOOL_DAEMON);
|
||||
|
||||
if (osquery::FLAGS_config_check) {
|
||||
auto s = osquery::Config::checkConfig();
|
||||
if (!s.ok()) {
|
||||
std::cerr << "Error reading config: " << s.toString() << "\n";
|
||||
}
|
||||
return s.getCode();
|
||||
}
|
||||
|
||||
#ifndef __APPLE__
|
||||
// OSX uses launchd to daemonize.
|
||||
if (osquery::FLAGS_daemonize) {
|
||||
|
Loading…
Reference in New Issue
Block a user