Add debian packaging infrastructure for cert-mon to build debian package for cert-mon. Story: 2009101 Task: 43088 Signed-off-by: Charles Short <charles.short@windriver.com> Change-Id: Ic0835ee9838f9bea4bd39a5bd3d3c6a3f3d06edc
15 lines
440 B
Makefile
Executable File
15 lines
440 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
#export DH_VERBOSE = 1
|
|
|
|
ROOT := $(CURDIR)/debian/tmp
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
install -m 755 -p -D cert-mon ${ROOT}/usr/lib/ocf/resource.d/platform/cert-mon
|
|
install -m 644 -p -D cert-mon.service ${ROOT}/lib/systemd/system/cert-mon.service
|
|
install -m 644 -p -D cert-mon.syslog ${ROOT}/etc/syslog-ng/conf.d/cert-mon.conf
|
|
install -m 644 -p -D cert-mon.logrotate ${ROOT}/etc/logrotate.d/cert-mon.conf
|
|
dh_install
|