Bug#924791: kea-dhcp-ddns-server: won't start on boot because of mis-typed WantedBy in the .service file

2019-06-06 Thread Jason Guy
Hi Markus,

We are trying to get this in Buster, but not sure how that is going...or
why it is taking so long.
However, in the meantime, you can simply add the sid repo to the sources,
and add an apt preference to pin the Kea packages to use Sid.

Jason

On Thu, Jun 6, 2019 at 10:54 AM Markus Schönhaber <
debian-b...@ddt-consult.de> wrote:

> Hi Jason,
>
> how is one supposed to upgrade the package to 1.5.0 on a
> released/supported Debian version (i. e. without moving to sid or create
> some kind of a frankendebian)?
>
> Jason Guy:
>
> > The version 1.1.0 package is not supported anymore. Please upgrade to the
> > 1.5.0 package.
>


Bug#924791: kea-dhcp-ddns-server: won't start on boot because of mis-typed WantedBy in the .service file

2019-06-06 Thread Markus Schönhaber
Hi Jason,

how is one supposed to upgrade the package to 1.5.0 on a
released/supported Debian version (i. e. without moving to sid or create
some kind of a frankendebian)?

Jason Guy:

> The version 1.1.0 package is not supported anymore. Please upgrade to the
> 1.5.0 package.



Bug#924791: kea-dhcp-ddns-server: won't start on boot because of mis-typed WantedBy in the .service file

2019-06-06 Thread Jason Guy
Hi Markus,

The version 1.1.0 package is not supported anymore. Please upgrade to the
1.5.0 package.

Jason

On Sun, Mar 17, 2019 at 1:33 PM Markus Schönhaber <
debian-b...@ddt-consult.de> wrote:

> Package: kea-dhcp-ddns-server
> Version: 1.1.0-1
> Severity: important
>
> Dear Maintainer,
>
> the service names given in the WantedBy entires of kea's .service
> file contain an additional character 'v' that is not present in the
> names of the services referenced - for example
> kea-dhcp*v*4-server.service instead of kea-dhcp4-server.service.
> Therefore, the .service.wants directories created by systemd on
> enabling the service have the wrong name and the symlinks created in there
> are ignored when calculating the dependencies.
> The trivial patch which is attached solves this problem for me.
>
> -- System Information:
> Debian Release: 9.8
>   APT prefers stable-updates
>   APT policy: (500, 'stable-updates'), (500, 'stable')
> Architecture: amd64 (x86_64)
>
> Kernel: Linux 4.9.0-8-amd64 (SMP w/2 CPU cores)
> Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8),
> LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
>
> Versions of packages kea-dhcp-ddns-server depends on:
> ii  kea-common 1.1.0-1
> ii  libboost-system1.62.0  1.62.0+dfsg-4
> ii  libc6  2.24-11+deb9u4
> ii  libgcc11:6.3.0-18+deb9u1
> ii  libstdc++6 6.3.0-18+deb9u1
>
> kea-dhcp-ddns-server recommends no packages.
>
> Versions of packages kea-dhcp-ddns-server suggests:
> ii  kea-doc  1.1.0-1
>
> -- Configuration Files:
> /etc/kea/kea-dhcp-ddns.conf changed [not included]
>
> -- no debconf information
>


Bug#924791: kea-dhcp-ddns-server: won't start on boot because of mis-typed WantedBy in the .service file

2019-03-17 Thread Markus Schönhaber
Package: kea-dhcp-ddns-server
Version: 1.1.0-1
Severity: important

Dear Maintainer,

the service names given in the WantedBy entires of kea's .service
file contain an additional character 'v' that is not present in the
names of the services referenced - for example
kea-dhcp*v*4-server.service instead of kea-dhcp4-server.service.
Therefore, the .service.wants directories created by systemd on
enabling the service have the wrong name and the symlinks created in there
are ignored when calculating the dependencies.
The trivial patch which is attached solves this problem for me.

-- System Information:
Debian Release: 9.8
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-8-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), 
LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages kea-dhcp-ddns-server depends on:
ii  kea-common 1.1.0-1
ii  libboost-system1.62.0  1.62.0+dfsg-4
ii  libc6  2.24-11+deb9u4
ii  libgcc11:6.3.0-18+deb9u1
ii  libstdc++6 6.3.0-18+deb9u1

kea-dhcp-ddns-server recommends no packages.

Versions of packages kea-dhcp-ddns-server suggests:
ii  kea-doc  1.1.0-1

-- Configuration Files:
/etc/kea/kea-dhcp-ddns.conf changed [not included]

-- no debconf information
--- /lib/systemd/system/kea-dhcp-ddns-server.service2016-07-25 
22:17:51.0 +0200
+++ /etc/systemd/system/kea-dhcp-ddns-server.service2019-03-17 
15:58:50.849702477 +0100
@@ -9,5 +9,5 @@
 ExecStart=/usr/sbin/kea-dhcp-ddns -c /etc/kea/kea-dhcp-ddns.conf
 
 [Install]
-WantedBy=kea-dhcpv4-server.service
-WantedBy=kea-dhcpv6-server.service
+WantedBy=kea-dhcp4-server.service
+WantedBy=kea-dhcp6-server.service