e8355087ea
Since systemd unit can override parameters using drop-in unit, we don't need mustache template for them. Also, drop --disttype option on install.sh since it does not required anymore, introduce --sysconfdir instead for non-redhat distributions.
23 lines
387 B
Plaintext
Executable File
23 lines
387 B
Plaintext
Executable File
#!/usr/bin/make -f
|
|
|
|
override_dh_auto_build:
|
|
|
|
override_dh_auto_clean:
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
./install.sh --root "$(CURDIR)/debian/{{product}}-jmx" --sysconfdir /etc/default
|
|
|
|
override_dh_installinit:
|
|
{{#scylla}}
|
|
dh_installinit --no-start
|
|
{{/scylla}}
|
|
{{^scylla}}
|
|
dh_installinit --no-start --name scylla-jmx
|
|
{{/scylla}}
|
|
|
|
override_dh_strip_nondeterminism:
|
|
|
|
%:
|
|
dh $@
|