* [krogoth] systemd network service fails to start on boot
@ 2016-07-20 7:53 Kristian Amlie
2016-07-20 7:53 ` [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: Kristian Amlie @ 2016-07-20 7:53 UTC (permalink / raw)
To: openembedded-core
Hey,
on our krogoth build the systemd network service does not start, and it
seems to be because of missing users, which has already been fixed on
master. I've cherry-picked the two patches that fixed the problem for
us. Note that they are not written by me, but by other people on this
list. I hope they can be applied to krogoth.
Regards
Kristian Amlie
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/2] systemd: Create missing sysusers offline
2016-07-20 7:53 [krogoth] systemd network service fails to start on boot Kristian Amlie
@ 2016-07-20 7:53 ` Kristian Amlie
2016-07-20 7:53 ` [PATCH 2/2] systemd: allow add users as a rootfs postprocess cmd Kristian Amlie
` (2 subsequent siblings)
3 siblings, 0 replies; 12+ messages in thread
From: Kristian Amlie @ 2016-07-20 7:53 UTC (permalink / raw)
To: openembedded-core
From: Khem Raj <raj.khem@gmail.com>
Some system users which are needed by systemd components were missing
create these users knobbed with relevant packageconfig
(From OE-Core rev: d18957925c6c073b7194e3a233efea24e436f74e)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fd36a447d0da53e713d992b17ce86dd31ea63c67)
Signed-off-by: Kristian Amlie <kristian.amlie@mender.io>
---
meta/recipes-core/systemd/systemd_229.bb | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-core/systemd/systemd_229.bb b/meta/recipes-core/systemd/systemd_229.bb
index c23c749..a2d35f8 100644
--- a/meta/recipes-core/systemd/systemd_229.bb
+++ b/meta/recipes-core/systemd/systemd_229.bb
@@ -319,10 +319,16 @@ PACKAGES =+ "\
SYSTEMD_PACKAGES = "${@bb.utils.contains('PACKAGECONFIG', 'binfmt', '${PN}-binfmt', '', d)}"
SYSTEMD_SERVICE_${PN}-binfmt = "systemd-binfmt.service"
-USERADD_PACKAGES = "${PN}"
+USERADD_PACKAGES = "${PN} ${PN}-extra-utils"
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-gateway;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-remote;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'journal-upload', '--system -d / -M --shell /bin/nologin systemd-journal-upload;', '', d)}"
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'timesyncd', '--system -d / -M --shell /bin/nologin systemd-timesync;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'networkd', '--system -d / -M --shell /bin/nologin systemd-network;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'coredump', '--system -d / -M --shell /bin/nologin systemd-coredump;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'resolved', '--system -d / -M --shell /bin/nologin systemd-resolve;', '', d)}"
GROUPADD_PARAM_${PN} = "-r lock; -r systemd-journal"
+USERADD_PARAM_${PN}-extra-utils += "--system -d / -M --shell /bin/nologin systemd-bus-proxy;"
FILES_${PN}-analyze = "${bindir}/systemd-analyze"
--
2.7.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 2/2] systemd: allow add users as a rootfs postprocess cmd
2016-07-20 7:53 [krogoth] systemd network service fails to start on boot Kristian Amlie
2016-07-20 7:53 ` [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
@ 2016-07-20 7:53 ` Kristian Amlie
2016-08-09 8:59 ` [krogoth] systemd network service fails to start on boot Kristian Amlie
2016-08-09 10:01 ` Burton, Ross
3 siblings, 0 replies; 12+ messages in thread
From: Kristian Amlie @ 2016-07-20 7:53 UTC (permalink / raw)
To: openembedded-core
From: Stephano Cetola <stephano.cetola@linux.intel.com>
Adding all the users / groups to systemd is only available for readonly
file systems. This change allows users to add them to read / write file
systems as well by specifying:
ROOTFS_POSTPROCESS_COMMAND += "systemd_create_users"
Also, add "--shell /sbin/nologin" to each user's add params.
[ YOCTO #9497 ]
(From OE-Core rev: 98a4c642444a524f547f5d978a28814d20c12354)
Signed-off-by: Stephano Cetola <stephano.cetola@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 79be110c1fdfd0affe6a310b96e7107c4549d23c)
Signed-off-by: Kristian Amlie <kristian.amlie@mender.io>
---
meta/classes/rootfs-postcommands.bbclass | 43 +++++++++++++++-----------------
1 file changed, 20 insertions(+), 23 deletions(-)
diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass
index 95d28af..db8b551 100644
--- a/meta/classes/rootfs-postcommands.bbclass
+++ b/meta/classes/rootfs-postcommands.bbclass
@@ -21,7 +21,7 @@ ROOTFS_POSTUNINSTALL_COMMAND =+ "write_image_manifest ; "
POSTINST_LOGFILE ?= "${localstatedir}/log/postinstall.log"
# Set default target for systemd images
SYSTEMD_DEFAULT_TARGET ?= '${@bb.utils.contains("IMAGE_FEATURES", "x11-base", "graphical.target", "multi-user.target", d)}'
-ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("DISTRO_FEATURES", "systemd", "set_systemd_default_target; ", "", d)}'
+ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("DISTRO_FEATURES", "systemd", "set_systemd_default_target; systemd_create_users;", "", d)}'
ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile;'
@@ -30,7 +30,25 @@ ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile;'
SSH_DISABLE_DNS_LOOKUP ?= " ssh_disable_dns_lookup ; "
ROOTFS_POSTPROCESS_COMMAND_append_qemuall = "${SSH_DISABLE_DNS_LOOKUP}"
-
+systemd_create_users () {
+ for conffile in ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd.conf ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd-remote.conf; do
+ [ -e $conffile ] || continue
+ grep -v "^#" $conffile | sed -e '/^$/d' | while read type name id comment; do
+ if [ "$type" = "u" ]; then
+ useradd_params="--shell /sbin/nologin"
+ [ "$id" != "-" ] && useradd_params="$useradd_params --uid $id"
+ [ "$comment" != "-" ] && useradd_params="$useradd_params --comment $comment"
+ useradd_params="$useradd_params --system $name"
+ eval useradd --root ${IMAGE_ROOTFS} $useradd_params || true
+ elif [ "$type" = "g" ]; then
+ groupadd_params=""
+ [ "$id" != "-" ] && groupadd_params="$groupadd_params --gid $id"
+ groupadd_params="$groupadd_params --system $name"
+ eval groupadd --root ${IMAGE_ROOTFS} $groupadd_params || true
+ fi
+ done
+ done
+}
#
# A hook function to support read-only-rootfs IMAGE_FEATURES
@@ -73,27 +91,6 @@ read_only_rootfs_hook () {
${IMAGE_ROOTFS}/etc/init.d/populate-volatile.sh
fi
fi
-
- if ${@bb.utils.contains("DISTRO_FEATURES", "systemd", "true", "false", d)}; then
- # Update user database files so that services don't fail for a read-only systemd system
- for conffile in ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd.conf ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd-remote.conf; do
- [ -e $conffile ] || continue
- grep -v "^#" $conffile | sed -e '/^$/d' | while read type name id comment; do
- if [ "$type" = "u" ]; then
- useradd_params=""
- [ "$id" != "-" ] && useradd_params="$useradd_params --uid $id"
- [ "$comment" != "-" ] && useradd_params="$useradd_params --comment $comment"
- useradd_params="$useradd_params --system $name"
- eval useradd --root ${IMAGE_ROOTFS} $useradd_params || true
- elif [ "$type" = "g" ]; then
- groupadd_params=""
- [ "$id" != "-" ] && groupadd_params="$groupadd_params --gid $id"
- groupadd_params="$groupadd_params --system $name"
- eval groupadd --root ${IMAGE_ROOTFS} $groupadd_params || true
- fi
- done
- done
- fi
}
#
--
2.7.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [krogoth] systemd network service fails to start on boot
2016-07-20 7:53 [krogoth] systemd network service fails to start on boot Kristian Amlie
2016-07-20 7:53 ` [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
2016-07-20 7:53 ` [PATCH 2/2] systemd: allow add users as a rootfs postprocess cmd Kristian Amlie
@ 2016-08-09 8:59 ` Kristian Amlie
2016-08-09 10:01 ` Burton, Ross
3 siblings, 0 replies; 12+ messages in thread
From: Kristian Amlie @ 2016-08-09 8:59 UTC (permalink / raw)
To: Openembedded-core
Ping!
Is there no interest in fixing network services under systemd?
--
Kristian
On 20/07/16 09:53, Kristian Amlie wrote:
> Hey,
>
> on our krogoth build the systemd network service does not start, and it
> seems to be because of missing users, which has already been fixed on
> master. I've cherry-picked the two patches that fixed the problem for
> us. Note that they are not written by me, but by other people on this
> list. I hope they can be applied to krogoth.
>
> Regards
> Kristian Amlie
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [krogoth] systemd network service fails to start on boot
2016-07-20 7:53 [krogoth] systemd network service fails to start on boot Kristian Amlie
` (2 preceding siblings ...)
2016-08-09 8:59 ` [krogoth] systemd network service fails to start on boot Kristian Amlie
@ 2016-08-09 10:01 ` Burton, Ross
2016-08-09 11:48 ` [krogoth] [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
2016-08-15 6:38 ` [krogoth] systemd network service fails to start on boot Kristian Amlie
3 siblings, 2 replies; 12+ messages in thread
From: Burton, Ross @ 2016-08-09 10:01 UTC (permalink / raw)
To: Kristian Amlie; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 585 bytes --]
On 20 July 2016 at 08:53, Kristian Amlie <kristian.amlie@mender.io> wrote:
> on our krogoth build the systemd network service does not start, and it
> seems to be because of missing users, which has already been fixed on
> master. I've cherry-picked the two patches that fixed the problem for
> us. Note that they are not written by me, but by other people on this
> list. I hope they can be applied to krogoth.
>
Can you send the two patches to this list, with the [krogoth] tag in the
subject, and your signed-off-by to confirm that you've tested them?
Thanks,
Ross
[-- Attachment #2: Type: text/html, Size: 1036 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [krogoth] [PATCH 1/2] systemd: Create missing sysusers offline
2016-08-09 10:01 ` Burton, Ross
@ 2016-08-09 11:48 ` Kristian Amlie
2016-08-09 11:48 ` [krogoth] [PATCH 2/2] systemd: allow add users as a rootfs postprocess cmd Kristian Amlie
2016-08-15 6:38 ` [krogoth] systemd network service fails to start on boot Kristian Amlie
1 sibling, 1 reply; 12+ messages in thread
From: Kristian Amlie @ 2016-08-09 11:48 UTC (permalink / raw)
To: ross.burton; +Cc: openembedded-core
From: Khem Raj <raj.khem@gmail.com>
Some system users which are needed by systemd components were missing
create these users knobbed with relevant packageconfig
(From OE-Core rev: d18957925c6c073b7194e3a233efea24e436f74e)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fd36a447d0da53e713d992b17ce86dd31ea63c67)
Signed-off-by: Kristian Amlie <kristian.amlie@mender.io>
---
meta/recipes-core/systemd/systemd_229.bb | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-core/systemd/systemd_229.bb b/meta/recipes-core/systemd/systemd_229.bb
index c23c749..a2d35f8 100644
--- a/meta/recipes-core/systemd/systemd_229.bb
+++ b/meta/recipes-core/systemd/systemd_229.bb
@@ -319,10 +319,16 @@ PACKAGES =+ "\
SYSTEMD_PACKAGES = "${@bb.utils.contains('PACKAGECONFIG', 'binfmt', '${PN}-binfmt', '', d)}"
SYSTEMD_SERVICE_${PN}-binfmt = "systemd-binfmt.service"
-USERADD_PACKAGES = "${PN}"
+USERADD_PACKAGES = "${PN} ${PN}-extra-utils"
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-gateway;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'microhttpd', '--system -d / -M --shell /bin/nologin systemd-journal-remote;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'journal-upload', '--system -d / -M --shell /bin/nologin systemd-journal-upload;', '', d)}"
USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'timesyncd', '--system -d / -M --shell /bin/nologin systemd-timesync;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'networkd', '--system -d / -M --shell /bin/nologin systemd-network;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'coredump', '--system -d / -M --shell /bin/nologin systemd-coredump;', '', d)}"
+USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'resolved', '--system -d / -M --shell /bin/nologin systemd-resolve;', '', d)}"
GROUPADD_PARAM_${PN} = "-r lock; -r systemd-journal"
+USERADD_PARAM_${PN}-extra-utils += "--system -d / -M --shell /bin/nologin systemd-bus-proxy;"
FILES_${PN}-analyze = "${bindir}/systemd-analyze"
--
2.7.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [krogoth] [PATCH 2/2] systemd: allow add users as a rootfs postprocess cmd
2016-08-09 11:48 ` [krogoth] [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
@ 2016-08-09 11:48 ` Kristian Amlie
0 siblings, 0 replies; 12+ messages in thread
From: Kristian Amlie @ 2016-08-09 11:48 UTC (permalink / raw)
To: ross.burton; +Cc: openembedded-core
From: Stephano Cetola <stephano.cetola@linux.intel.com>
Adding all the users / groups to systemd is only available for readonly
file systems. This change allows users to add them to read / write file
systems as well by specifying:
ROOTFS_POSTPROCESS_COMMAND += "systemd_create_users"
Also, add "--shell /sbin/nologin" to each user's add params.
[ YOCTO #9497 ]
(From OE-Core rev: 98a4c642444a524f547f5d978a28814d20c12354)
Signed-off-by: Stephano Cetola <stephano.cetola@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 79be110c1fdfd0affe6a310b96e7107c4549d23c)
Signed-off-by: Kristian Amlie <kristian.amlie@mender.io>
---
meta/classes/rootfs-postcommands.bbclass | 43 +++++++++++++++-----------------
1 file changed, 20 insertions(+), 23 deletions(-)
diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass
index 95d28af..db8b551 100644
--- a/meta/classes/rootfs-postcommands.bbclass
+++ b/meta/classes/rootfs-postcommands.bbclass
@@ -21,7 +21,7 @@ ROOTFS_POSTUNINSTALL_COMMAND =+ "write_image_manifest ; "
POSTINST_LOGFILE ?= "${localstatedir}/log/postinstall.log"
# Set default target for systemd images
SYSTEMD_DEFAULT_TARGET ?= '${@bb.utils.contains("IMAGE_FEATURES", "x11-base", "graphical.target", "multi-user.target", d)}'
-ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("DISTRO_FEATURES", "systemd", "set_systemd_default_target; ", "", d)}'
+ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("DISTRO_FEATURES", "systemd", "set_systemd_default_target; systemd_create_users;", "", d)}'
ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile;'
@@ -30,7 +30,25 @@ ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile;'
SSH_DISABLE_DNS_LOOKUP ?= " ssh_disable_dns_lookup ; "
ROOTFS_POSTPROCESS_COMMAND_append_qemuall = "${SSH_DISABLE_DNS_LOOKUP}"
-
+systemd_create_users () {
+ for conffile in ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd.conf ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd-remote.conf; do
+ [ -e $conffile ] || continue
+ grep -v "^#" $conffile | sed -e '/^$/d' | while read type name id comment; do
+ if [ "$type" = "u" ]; then
+ useradd_params="--shell /sbin/nologin"
+ [ "$id" != "-" ] && useradd_params="$useradd_params --uid $id"
+ [ "$comment" != "-" ] && useradd_params="$useradd_params --comment $comment"
+ useradd_params="$useradd_params --system $name"
+ eval useradd --root ${IMAGE_ROOTFS} $useradd_params || true
+ elif [ "$type" = "g" ]; then
+ groupadd_params=""
+ [ "$id" != "-" ] && groupadd_params="$groupadd_params --gid $id"
+ groupadd_params="$groupadd_params --system $name"
+ eval groupadd --root ${IMAGE_ROOTFS} $groupadd_params || true
+ fi
+ done
+ done
+}
#
# A hook function to support read-only-rootfs IMAGE_FEATURES
@@ -73,27 +91,6 @@ read_only_rootfs_hook () {
${IMAGE_ROOTFS}/etc/init.d/populate-volatile.sh
fi
fi
-
- if ${@bb.utils.contains("DISTRO_FEATURES", "systemd", "true", "false", d)}; then
- # Update user database files so that services don't fail for a read-only systemd system
- for conffile in ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd.conf ${IMAGE_ROOTFS}/usr/lib/sysusers.d/systemd-remote.conf; do
- [ -e $conffile ] || continue
- grep -v "^#" $conffile | sed -e '/^$/d' | while read type name id comment; do
- if [ "$type" = "u" ]; then
- useradd_params=""
- [ "$id" != "-" ] && useradd_params="$useradd_params --uid $id"
- [ "$comment" != "-" ] && useradd_params="$useradd_params --comment $comment"
- useradd_params="$useradd_params --system $name"
- eval useradd --root ${IMAGE_ROOTFS} $useradd_params || true
- elif [ "$type" = "g" ]; then
- groupadd_params=""
- [ "$id" != "-" ] && groupadd_params="$groupadd_params --gid $id"
- groupadd_params="$groupadd_params --system $name"
- eval groupadd --root ${IMAGE_ROOTFS} $groupadd_params || true
- fi
- done
- done
- fi
}
#
--
2.7.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [krogoth] systemd network service fails to start on boot
2016-08-09 10:01 ` Burton, Ross
2016-08-09 11:48 ` [krogoth] [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
@ 2016-08-15 6:38 ` Kristian Amlie
2016-08-15 9:24 ` Burton, Ross
1 sibling, 1 reply; 12+ messages in thread
From: Kristian Amlie @ 2016-08-15 6:38 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On 09/08/16 12:01, Burton, Ross wrote:
>
> On 20 July 2016 at 08:53, Kristian Amlie <kristian.amlie@mender.io
> <mailto:kristian.amlie@mender.io>> wrote:
>
> on our krogoth build the systemd network service does not start, and it
> seems to be because of missing users, which has already been fixed on
> master. I've cherry-picked the two patches that fixed the problem for
> us. Note that they are not written by me, but by other people on this
> list. I hope they can be applied to krogoth.
>
>
> Can you send the two patches to this list, with the [krogoth] tag in the
> subject, and your signed-off-by to confirm that you've tested them?
So, I did what you asked. Is there anything else missing?
--
Kristian
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [krogoth] systemd network service fails to start on boot
2016-08-15 6:38 ` [krogoth] systemd network service fails to start on boot Kristian Amlie
@ 2016-08-15 9:24 ` Burton, Ross
2016-08-15 10:25 ` Kristian Amlie
2016-08-15 20:55 ` akuster808
0 siblings, 2 replies; 12+ messages in thread
From: Burton, Ross @ 2016-08-15 9:24 UTC (permalink / raw)
To: Kristian Amlie; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 220 bytes --]
On 15 August 2016 at 07:38, Kristian Amlie <kristian.amlie@mender.io> wrote:
> So, I did what you asked. Is there anything else missing?
>
No, just wait for the krogoth maintainer to pick up the patches.
Ross
[-- Attachment #2: Type: text/html, Size: 619 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [krogoth] systemd network service fails to start on boot
2016-08-15 9:24 ` Burton, Ross
@ 2016-08-15 10:25 ` Kristian Amlie
2016-08-15 20:55 ` akuster808
1 sibling, 0 replies; 12+ messages in thread
From: Kristian Amlie @ 2016-08-15 10:25 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On 15/08/16 11:24, Burton, Ross wrote:
>
> On 15 August 2016 at 07:38, Kristian Amlie <kristian.amlie@mender.io
> <mailto:kristian.amlie@mender.io>> wrote:
>
> So, I did what you asked. Is there anything else missing?
>
>
> No, just wait for the krogoth maintainer to pick up the patches.
Ah, I see. Sorry for nagging! :-)
--
Kristian
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [krogoth] systemd network service fails to start on boot
2016-08-15 9:24 ` Burton, Ross
2016-08-15 10:25 ` Kristian Amlie
@ 2016-08-15 20:55 ` akuster808
2016-08-29 9:00 ` Kristian Amlie
1 sibling, 1 reply; 12+ messages in thread
From: akuster808 @ 2016-08-15 20:55 UTC (permalink / raw)
To: openembedded-core
On 08/15/2016 02:24 AM, Burton, Ross wrote:
> On 15 August 2016 at 07:38, Kristian Amlie <kristian.amlie@mender.io> wrote:
>
>> So, I did what you asked. Is there anything else missing?
>>
>
> No, just wait for the krogoth maintainer to pick up the patches.
pulling to staging.
thanks armin
>
> Ross
>
>
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [krogoth] systemd network service fails to start on boot
2016-08-15 20:55 ` akuster808
@ 2016-08-29 9:00 ` Kristian Amlie
0 siblings, 0 replies; 12+ messages in thread
From: Kristian Amlie @ 2016-08-29 9:00 UTC (permalink / raw)
To: akuster808, openembedded-core
On 15/08/16 22:55, akuster808 wrote:
>
>
> On 08/15/2016 02:24 AM, Burton, Ross wrote:
>> On 15 August 2016 at 07:38, Kristian Amlie <kristian.amlie@mender.io> wrote:
>>
>>> So, I did what you asked. Is there anything else missing?
>>>
>>
>> No, just wait for the krogoth maintainer to pick up the patches.
>
> pulling to staging.
>
> thanks armin
So, any idea when this will end up in the krogoth branch? I see the
branch has moved forward, but this is still missing.
Systemd has been broken on krogoth for over a month now...
--
Kristian
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2016-08-29 9:00 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-20 7:53 [krogoth] systemd network service fails to start on boot Kristian Amlie
2016-07-20 7:53 ` [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
2016-07-20 7:53 ` [PATCH 2/2] systemd: allow add users as a rootfs postprocess cmd Kristian Amlie
2016-08-09 8:59 ` [krogoth] systemd network service fails to start on boot Kristian Amlie
2016-08-09 10:01 ` Burton, Ross
2016-08-09 11:48 ` [krogoth] [PATCH 1/2] systemd: Create missing sysusers offline Kristian Amlie
2016-08-09 11:48 ` [krogoth] [PATCH 2/2] systemd: allow add users as a rootfs postprocess cmd Kristian Amlie
2016-08-15 6:38 ` [krogoth] systemd network service fails to start on boot Kristian Amlie
2016-08-15 9:24 ` Burton, Ross
2016-08-15 10:25 ` Kristian Amlie
2016-08-15 20:55 ` akuster808
2016-08-29 9:00 ` Kristian Amlie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox