mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-27 03:45:11 +00:00
This will include the node_exporter service script for ubuntu distribution with systemd support. Signed-off-by: Amnon Heiman <amnon@scylladb.com>
21 lines
570 B
Makefile
Executable File
21 lines
570 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
override_dh_auto_build:
|
|
./configure.py --disable-xen --enable-dpdk --mode=release --static-stdc++ --static-thrift --compiler=@@COMPILER@@
|
|
ninja
|
|
|
|
override_dh_auto_clean:
|
|
rm -rf build/release seastar/build
|
|
rm -rf Cql.tokens
|
|
rm -rf build.ninja seastar/build.ninja
|
|
|
|
override_dh_installinit:
|
|
dh_installinit --no-start @@DH_INSTALLINIT@@
|
|
dh_installinit --no-start --name scylla-housekeeping @@DH_INSTALLINIT@@
|
|
dh_installinit --no-start --name node-exporter @@DH_INSTALLINIT@@
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=scylla-server-dbg
|
|
%:
|
|
dh $@
|