mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-18 18:19:13 -05: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' {} +
```
61 lines
1.4 KiB
CMake
61 lines
1.4 KiB
CMake
# SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
add_subdirectory(base)
|
|
add_subdirectory(cli)
|
|
add_subdirectory(config)
|
|
add_subdirectory(remote)
|
|
add_subdirectory(icinga)
|
|
add_subdirectory(methods)
|
|
|
|
if(ICINGA2_WITH_CHECKER)
|
|
add_subdirectory(checker)
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_COMPAT)
|
|
add_subdirectory(compat)
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
|
|
add_subdirectory(db_ido)
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_MYSQL)
|
|
find_package(MySQL)
|
|
|
|
if(MYSQL_FOUND)
|
|
add_subdirectory(db_ido_mysql)
|
|
add_subdirectory(mysql_shim)
|
|
else()
|
|
message(FATAL_ERROR "You have selected MySQL support, but MySQL could not be found. You can disable the MySQL IDO module using -DICINGA2_WITH_MYSQL=OFF.")
|
|
endif()
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_PGSQL)
|
|
find_package(PostgreSQL)
|
|
|
|
if(PostgreSQL_FOUND)
|
|
add_subdirectory(db_ido_pgsql)
|
|
add_subdirectory(pgsql_shim)
|
|
else()
|
|
message(FATAL_ERROR "You have selected PostgreSQL support, but PostgreSQL could not be found. You can disable the PostgreSQL IDO module using -DICINGA2_WITH_PGSQL=OFF.")
|
|
endif()
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_LIVESTATUS)
|
|
add_subdirectory(livestatus)
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_NOTIFICATION)
|
|
add_subdirectory(notification)
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_PERFDATA)
|
|
add_subdirectory(perfdata)
|
|
endif()
|
|
|
|
if(ICINGA2_WITH_ICINGADB)
|
|
add_subdirectory(icingadb)
|
|
endif()
|
|
|
|
set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE)
|