mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-12 16:24:41 +02:00
API: Fix error message with PUT requests for existing objects
fixes #11396
This commit is contained in:
parent
d82db2ae6c
commit
83985f97af
@ -111,8 +111,10 @@ bool ConfigObjectUtility::CreateObject(const Type::Ptr& type, const String& full
|
|||||||
String path = GetObjectConfigPath(type, fullName);
|
String path = GetObjectConfigPath(type, fullName);
|
||||||
Utility::MkDirP(Utility::DirName(path), 0700);
|
Utility::MkDirP(Utility::DirName(path), 0700);
|
||||||
|
|
||||||
if (Utility::PathExists(path))
|
if (Utility::PathExists(path)) {
|
||||||
BOOST_THROW_EXCEPTION(ScriptError("Configuration file '" + path + "' already exists."));
|
errors->Add("Configuration file '" + path + "' already exists.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
std::ofstream fp(path.CStr(), std::ofstream::out | std::ostream::trunc);
|
std::ofstream fp(path.CStr(), std::ofstream::out | std::ostream::trunc);
|
||||||
fp << config;
|
fp << config;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user