mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 12:25:53 +02:00
* wip: basic impl of file notification no log rotate but might now do it 🤷 * wip: ticker to 2 seconds and lower some log levels * wip: remove redundant logrus formatter * wip: the plugin should not handle it own data queue since the plugin process may timeout, so instead have a function that uses said context and loop whilst locking the filewriter this may not be the best way 🤷, however, I dont want multiple notifications to attempt to reopen the file if it has been rotated outside of the plugin context * wip: impl log rotation which checks on check append, however, this may cause some issues in slow systems as the mutex lock doesnt give up until the file is rotated, however, the plugin looks for context and will give up if the plugin broker decides its timeout and will retry once the plugin has pushed again * wip: update yaml dep * wip: me no english great * wip: even if the file has been rotated outside our control we should still compute the file size * wip: improve context handling with creating a custom io writer struct which checks the context before attempting to write * wip: used return byte count instead of calling a conversion again * wip: actually check the enabled flag on log rotate * wip: changed my mind, we check when we check file size * wip: use io copy instead for memory alloc * fix: add notification file to deb/rpm build
49 lines
2.1 KiB
Makefile
Executable file
49 lines
2.1 KiB
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DEB_VERSION=$(shell dpkg-parsechangelog | grep -E '^Version:' | cut -f 2 -d ' ')
|
|
export BUILD_VERSION=v${DEB_VERSION}-debian-pragmatic
|
|
export GO111MODULE=on
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_clean:
|
|
override_dh_auto_test:
|
|
override_dh_auto_build:
|
|
override_dh_auto_install:
|
|
|
|
# just use the prebuilt binaries, otherwise:
|
|
# make build BUILD_RE_WASM=0 BUILD_STATIC=1
|
|
|
|
mkdir -p debian/crowdsec/usr/bin
|
|
mkdir -p debian/crowdsec/etc/crowdsec
|
|
mkdir -p debian/crowdsec/etc/crowdsec/acquis.d
|
|
mkdir -p debian/crowdsec/usr/share/crowdsec
|
|
mkdir -p debian/crowdsec/etc/crowdsec/hub/
|
|
mkdir -p debian/crowdsec/usr/share/crowdsec/config
|
|
mkdir -p debian/crowdsec/etc/crowdsec/console/
|
|
|
|
mkdir -p debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
mkdir -p debian/crowdsec/etc/crowdsec/notifications/
|
|
|
|
install -m 551 cmd/notification-slack/notification-slack debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
install -m 551 cmd/notification-http/notification-http debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
install -m 551 cmd/notification-splunk/notification-splunk debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
install -m 551 cmd/notification-email/notification-email debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
install -m 551 cmd/notification-sentinel/notification-sentinel debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
install -m 551 cmd/notification-file/notification-file debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
|
|
cp cmd/crowdsec/crowdsec debian/crowdsec/usr/bin
|
|
cp cmd/crowdsec-cli/cscli debian/crowdsec/usr/bin
|
|
cp wizard.sh debian/crowdsec/usr/share/crowdsec
|
|
install -m 600 config/config.yaml debian/crowdsec/etc/crowdsec/config.yaml
|
|
cp config/simulation.yaml debian/crowdsec/etc/crowdsec/simulation.yaml
|
|
cp config/profiles.yaml debian/crowdsec/etc/crowdsec/profiles.yaml
|
|
cp config/context.yaml debian/crowdsec/etc/crowdsec/console/context.yaml
|
|
cp config/console.yaml debian/crowdsec/etc/crowdsec/console.yaml
|
|
cp -a config/patterns debian/crowdsec/etc/crowdsec
|
|
|
|
override_dh_fixperms:
|
|
dh_fixperms
|
|
chmod 600 debian/crowdsec/etc/crowdsec/notifications/*
|
|
chmod 600 debian/crowdsec/etc/crowdsec/config.yaml
|