1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
include /usr/share/openstack-pkg-tools/pkgos.make
%:
dh $@
override_dh_fixperms-indep:
dh_fixperms
# This file contains OpenStack credentials: let's not make it public...
chmod 640 $(CURDIR)/debian/openstack-debian-images-updater/etc/openstack-debian-images-updater/example-credentials
override_dh_install:
set -e ; set -x ; for script_to_check in build-openstack-debian-image check-openstack-debian-image daily-openstack-debian-image openstack-debian-images-updater ; do \
sh -n $$script_to_check ; \
done
dh_install
|