mirror of
https://github.com/Icinga/icinga2.git
synced 2026-07-16 12:13:06 -04:00
I've used the following command to replace the original copyright header
lines in a C-style comment block:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
For files that use shell-style comments (#) like CMakeLists.txt, I've
used this command:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
And for SQL files:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
65 lines
1.5 KiB
Text
65 lines
1.5 KiB
Text
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "base/configobject.hpp"
|
|
#include "base/tlsutility.hpp"
|
|
|
|
library icingadb;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class IcingaDB : ConfigObject
|
|
{
|
|
activation_priority 100;
|
|
|
|
[config, no_user_modify] String host {
|
|
default {{{ return "127.0.0.1"; }}}
|
|
};
|
|
[config, no_user_modify] int port {
|
|
default {{{ return 6380; }}}
|
|
};
|
|
[config, no_user_modify] String path;
|
|
[config, no_user_modify] String username;
|
|
[config, no_user_view, no_user_modify] String password;
|
|
[config, no_user_modify] int db_index;
|
|
|
|
[config, no_user_modify] bool enable_tls {
|
|
default {{{ return false; }}}
|
|
};
|
|
|
|
[config, no_user_modify] bool insecure_noverify {
|
|
default {{{ return false; }}}
|
|
};
|
|
|
|
[config, no_user_modify] String cert_path;
|
|
[config, no_user_modify] String key_path;
|
|
[config, no_user_modify] String ca_path;
|
|
[config, no_user_modify] String crl_path;
|
|
[config, no_user_modify] String cipher_list {
|
|
default {{{ return DEFAULT_TLS_CIPHERS; }}}
|
|
};
|
|
[config, no_user_modify] String tls_protocolmin {
|
|
default {{{ return DEFAULT_TLS_PROTOCOLMIN; }}}
|
|
};
|
|
|
|
[config, no_user_modify] double connect_timeout {
|
|
default {{{ return DEFAULT_CONNECT_TIMEOUT; }}}
|
|
};
|
|
|
|
[no_storage] String environment_id {
|
|
get;
|
|
};
|
|
|
|
[set_protected] double ongoing_dump_start {
|
|
default {{{ return 0; }}}
|
|
};
|
|
[state, set_protected] double lastdump_end {
|
|
default {{{ return 0; }}}
|
|
};
|
|
[state, set_protected] double lastdump_took {
|
|
default {{{ return 0; }}}
|
|
};
|
|
};
|
|
|
|
}
|