]> granicus.if.org Git - icinga2/blobdiff - lib/db_ido_pgsql/idopgsqlconnection.ti
Merge pull request #7065 from uubk/logrotate-fix
[icinga2] / lib / db_ido_pgsql / idopgsqlconnection.ti
index 8734d734cb359028c5dce6854891334ffc8588c9..90ca84ecde27bbdd562afa9d8d8fd5aaff52407e 100644 (file)
@@ -1,21 +1,4 @@
-/******************************************************************************
- * Icinga 2                                                                   *
- * Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org)    *
- *                                                                            *
- * This program is free software; you can redistribute it and/or              *
- * modify it under the terms of the GNU General Public License                *
- * as published by the Free Software Foundation; either version 2             *
- * of the License, or (at your option) any later version.                     *
- *                                                                            *
- * This program is distributed in the hope that it will be useful,            *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
- * GNU General Public License for more details.                               *
- *                                                                            *
- * You should have received a copy of the GNU General Public License          *
- * along with this program; if not, write to the Free Software Foundation     *
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
- ******************************************************************************/
+/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 
 #include "db_ido/dbconnection.hpp"
 
@@ -26,6 +9,8 @@ namespace icinga
 
 class IdoPgsqlConnection : DbConnection
 {
+       activation_priority 100;
+
        [config] String host {
                default {{{ return "localhost"; }}}
        };
@@ -45,6 +30,10 @@ class IdoPgsqlConnection : DbConnection
                default {{{ return "default"; }}}
        };
        [config] String instance_description;
+       [config] String ssl_mode;
+       [config] String ssl_key;
+       [config] String ssl_cert;
+       [config] String ssl_ca;
 };
 
 }