]> granicus.if.org Git - icinga2/commitdiff
Removed dummy timeperiod definition.
authorGunnar Beutner <gunnar.beutner@netways.de>
Fri, 8 Mar 2013 23:01:04 +0000 (00:01 +0100)
committerGunnar Beutner <gunnar.beutner@netways.de>
Fri, 8 Mar 2013 23:01:04 +0000 (00:01 +0100)
components/compat/compatcomponent.cpp

index 7bfc4ddc683cb63cac3e35f18a47194192700a40..1978f72b867be4927a75fc21eef5071c3adeb79e 100644 (file)
@@ -308,8 +308,7 @@ void CompatComponent::DumpHostObject(ostream& fp, const Host::Ptr& host)
                   << "\t" << "passive_checks_enabled" << "\t" << (hc->GetEnablePassiveChecks() ? 1 : 0) << "\n"
                   << "\t" << "notifications_enabled" << "\t" << (hc->GetEnableNotifications() ? 1 : 0) << "\n"
                   << "\t" << "notification_options" << "\t" << "d,u,r" << "\n"
-                  << "\t" << "notification_interval" << "\t" << hc->GetNotificationInterval() << "\n"
-                  << "\t" << "notification_period" << "\t" << "24x7" << "\n";
+                  << "\t" << "notification_interval" << "\t" << hc->GetNotificationInterval() << "\n";
        } else {
                fp << "\t" << "check_interval" << "\t" << 60 << "\n"
                   << "\t" << "retry_interval" << "\t" << 60 << "\n"
@@ -433,7 +432,6 @@ void CompatComponent::DumpServiceObject(ostream& fp, const Service::Ptr& service
                   << "\t" << "notifications_enabled" << "\t" << (service->GetEnableNotifications() ? 1 : 0) << "\n"
                   << "\t" << "notification_options" << "\t" << "u,w,c,r" << "\n"
                   << "\t" << "notification_interval" << "\t" << service->GetNotificationInterval() << "\n"
-                  << "\t" << "notification_period" << "\t" << "24x7" << "\n"
                   << "\t" << "}" << "\n"
                   << "\n";
        }
@@ -517,19 +515,6 @@ void CompatComponent::StatusTimerHandler(void)
                 << "# This file is auto-generated. Do not modify this file." << "\n"
                 << "\n";
 
-       objectfp << "define timeperiod {"
-                << "\t" << "timeperiod_name" << "\t" << "24x7" << "\n"
-                << "\t" << "sunday" << "\t" << "00:00-24:00" << "\n"
-                << "\t" << "monday" << "\t" << "00:00-24:00" << "\n"
-                << "\t" << "tuesday" << "\t" << "00:00-24:00" << "\n"
-                << "\t" << "wednesday" << "\t" << "00:00-24:00" << "\n"
-                << "\t" << "thursday" << "\t" << "00:00-24:00" << "\n"
-                << "\t" << "friday" << "\t" << "00:00-24:00" << "\n"
-                << "\t" << "saturday" << "\t" << "00:00-24:00" << "\n"
-                << "\t" << "}" << "\n"
-                << "\n";
-
-
        BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("Host")) {
                Host::Ptr host = static_pointer_cast<Host>(object);