diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-06-26 00:36:54 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-06-26 00:36:54 +0200 |
commit | e39015003576b387bbe363de9d3648493a15b3d1 (patch) | |
tree | f7949334739c55c392de53352ef7da01b1d01687 /debian | |
parent | 8c9d76589b8a385edf03627f917cff7b753c88b7 (diff) |
Fix issue #901731
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index c1f52da..34be1db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,8 @@ ipmiutil (3.1.1-1) unstable; urgency=medium * debian/copyright: - Use secure copyright format URI. - Change years for Andy Cress. + * debian/rules: + - Fix FTBFS with dh_installsystemd (Closes: #901731). -- Jörg Frings-Fürst <debian@jff.email> Tue, 01 May 2018 14:07:48 +0200 diff --git a/debian/rules b/debian/rules index 273f1a0..502eb97 100755 --- a/debian/rules +++ b/debian/rules @@ -27,7 +27,7 @@ override_dh_installman: dh_installman override_dh_installsystemd: - dh_installsystemd debian/ipmiutil.ipmiutil_wdt.service - dh_installsystemd --no-enable --no-start debian/ipmiutil.ipmi_port.service - dh_installsystemd --no-enable --no-start debian/ipmiutil.ipmiutil_asy.service - dh_installsystemd --no-enable --no-start debian/ipmiutil.ipmiutil_evt.service + dh_installsystemd --name ipmiutil_wdt + dh_installsystemd --name ipmi_port --no-enable --no-start + dh_installsystemd --name ipmiutil_asy --no-enable --no-start + dh_installsystemd --name ipmiutil_evt --no-enable --no-start |