mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-04 16:20:18 +00:00
See https://github.com/falcosecurity/evolution/issues/318 Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
58 lines
2.4 KiB
CMake
58 lines
2.4 KiB
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (C) 2023 The Falco Authors.
|
|
#
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
# Systemd
|
|
file(MAKE_DIRECTORY ${PROJECT_BINARY_DIR}/scripts/systemd)
|
|
configure_file("${PROJECT_SOURCE_DIR}/scripts/systemd/falco-kmod-inject.service"
|
|
"${PROJECT_BINARY_DIR}/scripts/systemd" COPYONLY)
|
|
configure_file("${PROJECT_SOURCE_DIR}/scripts/systemd/falco-kmod.service"
|
|
"${PROJECT_BINARY_DIR}/scripts/systemd" COPYONLY)
|
|
configure_file("${PROJECT_SOURCE_DIR}/scripts/systemd/falco-bpf.service"
|
|
"${PROJECT_BINARY_DIR}/scripts/systemd" COPYONLY)
|
|
configure_file("${PROJECT_SOURCE_DIR}/scripts/systemd/falco-modern-bpf.service"
|
|
"${PROJECT_BINARY_DIR}/scripts/systemd" COPYONLY)
|
|
configure_file("${PROJECT_SOURCE_DIR}/scripts/systemd/falco-custom.service"
|
|
"${PROJECT_BINARY_DIR}/scripts/systemd" COPYONLY)
|
|
configure_file("${PROJECT_SOURCE_DIR}/scripts/systemd/falcoctl-artifact-follow.service"
|
|
"${PROJECT_BINARY_DIR}/scripts/systemd" COPYONLY)
|
|
|
|
# Debian
|
|
configure_file(debian/postinst.in debian/postinst COPYONLY)
|
|
configure_file(debian/postrm.in debian/postrm COPYONLY)
|
|
configure_file(debian/prerm.in debian/prerm COPYONLY)
|
|
|
|
# Rpm
|
|
configure_file(rpm/postinstall.in rpm/postinstall COPYONLY)
|
|
configure_file(rpm/postuninstall.in rpm/postuninstall COPYONLY)
|
|
configure_file(rpm/preuninstall.in rpm/preuninstall COPYONLY)
|
|
|
|
# driver loader
|
|
configure_file(falco-driver-loader falco-driver-loader @ONLY)
|
|
install(PROGRAMS ${PROJECT_BINARY_DIR}/scripts/falco-driver-loader
|
|
DESTINATION ${FALCO_BIN_DIR} COMPONENT "${FALCO_COMPONENT_NAME}")
|
|
endif()
|
|
|
|
# Install Falcoctl config file
|
|
if (NOT WIN32 AND NOT APPLE AND NOT EMSCRIPTEN AND NOT MUSL_OPTIMIZED_BUILD)
|
|
if(NOT DEFINED FALCOCTL_ETC_DIR)
|
|
set(FALCOCTL_ETC_DIR "${CMAKE_INSTALL_FULL_SYSCONFDIR}/falcoctl")
|
|
endif()
|
|
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/falcoctl/falcoctl.yaml DESTINATION "${FALCOCTL_ETC_DIR}" COMPONENT "${FALCO_COMPONENT_NAME}")
|
|
endif()
|