blob: b81e3ff3ebc28e8f632257159f48981d84aeac26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/make -f
DEB_PYTHON_SYSTEM=pycentral
include /usr/share/cdbs/1/class/python-distutils.mk
include /usr/share/cdbs/1/rules/debhelper.mk
DEB_UPDATE_RCD_PARAMS:= start 15 2 3 4 5 . stop 20 1 .
binary-install/ec2-init::
for x in $(DEB_DESTDIR)/usr/bin/*.py; do mv "$$x" "$${x%.py}"; done
dh_installinit -p ec2-init --name rightscale-init -- defaults 99 09
|