#include <boost/make_shared.hpp>
#include <boost/foreach.hpp>
#include <boost/thread/thread.hpp>
+#include <boost/algorithm/string/join.hpp>
#ifndef _WIN32
#include <execvpe.h>
#endif /* HAVE_PIPE2 */
// build argv
+ Log(LogDebug, "base", "Running command '" + boost::algorithm::join(m_Arguments, " ") + "'.");
+
char **argv = new char *[m_Arguments.size() + 1];
for (unsigned int i = 0; i < m_Arguments.size(); i++)
int fd = fds[0];
(void) close(fds[1]);
- char buffer[512];
+ char buffer[512];
std::ostringstream outputStream;
#include "base/process.h"
#include "base/array.h"
#include "base/objectlock.h"
-#include "base/logger_fwd.h"
#include <boost/foreach.hpp>
-#include <boost/algorithm/string/join.hpp>
using namespace icinga;
Process::Process(const std::vector<String>& arguments, const Dictionary::Ptr& extraEnvironment)
: m_Arguments(arguments), m_ExtraEnvironment(extraEnvironment), m_Timeout(600)
-{
- Log(LogDebug, "base", "Running command '" + boost::algorithm::join(arguments, " ") + "'.");
-}
+{ }
std::vector<String> Process::SplitCommand(const Value& command)
{