summaryrefslogtreecommitdiff
path: root/packages/debian/rules
blob: 6c3bf5260715a98d14e5578f0f05c3120adcf0a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

INIT_SYSTEM ?= upstart,systemd

%:
	dh $@ --with python2,systemd --buildsystem pybuild

override_dh_install:
	dh_install
	install -d debian/cloud-init/etc/rsyslog.d
	cp tools/21-cloudinit.conf debian/cloud-init/etc/rsyslog.d/21-cloudinit.conf

override_dh_auto_test:
	http_proxy= dh_auto_test -- --test-nose

override_dh_auto_install:
	dh_auto_install -- --init-system=$(INIT_SYSTEM)