[2026-06-09 15:08:43,163][ INFO][PID:2177523] Marking build as starting [2026-06-09 15:08:43,642][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:08:43,685][ INFO][PID:2177523] VM allocation process starts [2026-06-09 15:08:43,782][ INFO][PID:2177523] Trying to allocate VM: ResallocHost, ticket_id=3356640, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-09 15:08:48,794][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:08:53,834][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:08:58,848][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:03,851][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:08,853][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:13,870][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:18,877][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:22,217][ INFO][PID:2177523] Allocated host ResallocHost, ticket_id=3356640, hostname=34.200.212.116, name=aws_x86_64_reserved_prod_11766511_20260609_150635, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-09 15:09:22,223][ INFO][PID:2177523] Allocating ssh connection to builder [2026-06-09 15:09:22,228][ INFO][PID:2177523] Checking that builder machine is OK [2026-06-09 15:09:22,791][ INFO][PID:2177523] Installed copr-rpmbuild version: 1.8 [2026-06-09 15:09:22,801][ INFO][PID:2177523] Running remote command: copr-builder-ready srpm-builds [2026-06-09 15:09:23,188][ INFO][PID:2177523] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-09 15:09:23,189][ INFO][PID:2177523] Filling build.info file with builder info [2026-06-09 15:09:23,207][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:23,209][ INFO][PID:2177523] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "still", "project_name": "stillos-10-wayland-enablement-stack", "project_dirname": "stillos-10-wayland-enablement-stack", "submitter": "still", "ended_on": null, "started_on": 1781017763.2089684, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10583562", "build_id": 10583562, "package_name": "gdm", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -euo pipefail\\np=gdm; w=\\\"$PWD/work-$p\\\"; out=\\\"${COPR_RESULTDIR:-$PWD}\\\"; rm -rf \\\"$w\\\"; mkdir -p \\\"$w/fs\\\" \\\"$w/f\\\" \\\"$out\\\"\\nfr=(--repofrompath=f44,https://download.fedoraproject.org/pub/fedora/linux/releases/44/Everything/source/tree/ --repofrompath=f44u,https://download.fedoraproject.org/pub/fedora/linux/updates/44/Everything/source/tree/ --enablerepo=f44 --enablerepo=f44u)\\n(cd \\\"$w/fs\\\"; dnf -q download --source --disablerepo='*' --setopt='*.gpgcheck=0' --setopt='*.repo_gpgcheck=0' \\\"${fr[@]}\\\" \\\"$p\\\" >&2)\\nrpm2cpio \\\"$(ls \\\"$w/fs\\\"/*.src.rpm|tail -1)\\\" | (cd \\\"$w/f\\\"; cpio -idm --quiet)\\ns=\\\"$(ls \\\"$w/f\\\"/*.spec|head -1)\\\"\\ncat > \\\"$w/f/userdb-mask-mkdir-flag.patch\\\" <<'PATCH'\\nFrom: stillHQ \\nSubject: [PATCH] userdb: mask mkdir flag for systemd 257 runtime\\n\\nGDM 50 can be built against libsystemd headers that define\\nSD_VARLINK_SERVER_MODE_MKDIR_0755, but stillOS/EL10 currently runs on\\nsystemd 257. That runtime does not understand the newer flag and GDM\\nfails to start the greeter userdb service.\\n--- a/daemon/gdm-dynamic-user-store.c\\n+++ b/daemon/gdm-dynamic-user-store.c\\n@@ -42,6 +42,13 @@\\n #ifndef SD_VARLINK_SERVER_MODE_MKDIR_0755\\n #define SD_VARLINK_SERVER_MODE_MKDIR_0755 0\\n #endif\\n+\\n+/*\\n+ * EL10 ships systemd 257. If this package is built with newer systemd\\n+ * headers, the flag is compiled in but rejected by the older runtime.\\n+ */\\n+#undef SD_VARLINK_SERVER_MODE_MKDIR_0755\\n+#define SD_VARLINK_SERVER_MODE_MKDIR_0755 0\\n \\n struct _GdmDynamicUserStore\\n {\\nPATCH\\nsed -i '/^Source0:/a Patch999: userdb-mask-mkdir-flag.patch' \\\"$s\\\"\\ncat > \\\"$w/f/disable-userdb-on-el10.patch\\\" <<'PATCH'\\nFrom: stillHQ \\nSubject: [PATCH] build: disable dynamic userdb on EL10\\n\\nEL10 currently denies GDM's dynamic userdb socket and passwd lock paths at\\nruntime. Use GDM's static preallocated greeter-user fallback until the EL10\\nsystemd/userdb integration is compatible with GDM 50.\\n--- a/meson.build\\n+++ b/meson.build\\n@@ -74,7 +74,7 @@ if logind_provider == 'systemd'\\n libsystemd_dep = dependency('libsystemd')\\n logind_dep = libsystemd_dep\\n \\n- have_userdb = libsystemd_dep.version().version_compare('>= 257')\\n+ have_userdb = false\\n \\n # Our range is documented at https://systemd.io/UIDS-GIDS/\\n greeter_uid_min = systemd_dep.get_variable('greeter_uid_min', default_value: '60578')\\nPATCH\\nsed -i '/^Patch999:/a Patch1000: disable-userdb-on-el10.patch' \\\"$s\\\"\\ncat > \\\"$w/f/gdm.sysusers\\\" <<'EOF'\\nu gdm 42 \\\"GNOME Display Manager\\\" /var/lib/gdm\\nu gdm-greeter 60578:42 \\\"GNOME Display Manager Greeter\\\" /run/gdm/home/gdm-greeter /sbin/nologin\\nu gnome-initial-setup 60579:42 \\\"GNOME Initial Setup\\\" /run/gdm/home/gnome-initial-setup /sbin/nologin\\nEOF\\nsed -i -E '/^Patch[0-9]*:.*(fedora|Fedora|branding|logo|wallpaper|artwork)/d' \\\"$s\\\"\\nsed -i -E 's/^Release:.*/Release: 3.stillos.1%{?dist}/;s/^%autochangelog/%changelog\\\\n* Tue Jun 09 2026 stillHQ - stillOS rebuild\\\\n- Disable GDM dynamic userdb on EL10 and preallocate greeter users\\\\n\\\\n* Mon Jun 08 2026 stillHQ - stillOS rebuild\\\\n- Mask GDM userdb varlink mkdir flag for systemd 257 runtime\\\\n\\\\n* Fri May 29 2026 stillHQ - stillOS rebuild\\\\n- Rebuild for stillOS Wayland enablement/' \\\"$s\\\"\\ncp -a \\\"$w/f/.\\\" \\\"$out/\\\"\\nrpmbuild -bs \\\"$s\\\" --define \\\"_sourcedir $w/f\\\" --define \\\"_srcrpmdir $out\\\" --define \\\"_builddir $w/b\\\"\\n\", \"chroot\": \"rhel+epel-10-x86_64\", \"builddeps\": \"dnf dnf-plugins-core rpm-build rpmdevtools cpio curl unzip sed grep findutils patch diffutils coreutils gawk\", \"resultdir\": \".\", \"repos\": \"\"}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "still/stillos-10-wayland-enablement-stack--still", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "distributions_in_build": [ "almalinux-10", "rhel+epel-10" ], "distributions_in_project": [ "almalinux-10", "rhel+epel-10" ], "destdir": "/var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/still/stillos-10-wayland-enablement-stack", "result_dir": "10583562", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10583562, "mockchain_macros": { "copr_username": "still", "copr_projectname": "stillos-10-wayland-enablement-stack", "vendor": "Fedora Project COPR (still/stillos-10-wayland-enablement-stack)" } } ] } [2026-06-09 15:09:23,294][ INFO][PID:2177523] Sending fedora-messaging bus message in build.start [2026-06-09 15:09:25,098][ INFO][PID:2177523] Sending fedora-messaging bus message in chroot.start [2026-06-09 15:09:25,205][ INFO][PID:2177523] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10583562 --detached [2026-06-09 15:09:26,033][ INFO][PID:2177523] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.200.212.116' (ED25519) to the list of known hosts. [2026-06-09 15:09:26,035][ INFO][PID:2177523] Downloading the builder-live.log file, attempt 1 [2026-06-09 15:09:26,101][ INFO][PID:2177523] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.200.212.116 copr-rpmbuild-log [2026-06-09 15:09:31,078][ INFO][PID:2177523] Periodic builder liveness probe: alive [2026-06-09 15:09:31,082][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:36,088][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:41,094][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:46,100][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:51,117][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:09:56,121][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:10:01,130][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:10:06,149][ INFO][PID:2177523] Checking for cancel request [2026-06-09 15:10:10,266][ INFO][PID:2177523] Downloading results from builder [2026-06-09 15:10:10,267][ INFO][PID:2177523] rsyncing of mockbuilder@34.200.212.116:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562 started [2026-06-09 15:10:10,275][ INFO][PID:2177523] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.200.212.116:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/ &> /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/build-10583562.rsync.log [2026-06-09 15:10:10,949][ INFO][PID:2177523] rsyncing finished. [2026-06-09 15:10:10,950][ INFO][PID:2177523] VM Release request [2026-06-09 15:10:11,058][ INFO][PID:2177523] Searching for 'success' file in resultdir [2026-06-09 15:10:11,068][ INFO][PID:2177523] Getting build details [2026-06-09 15:10:11,079][ INFO][PID:2177523] Retrieving SRPM info from /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562 [2026-06-09 15:10:11,097][ INFO][PID:2177523] SRPM URL: https://download.copr.fedorainfracloud.org/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/gdm-50.1-3.stillos.1.src.rpm [2026-06-09 15:10:11,107][ INFO][PID:2177523] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/gdm-50.1-3.stillos.1.src.rpm', 'pkg_name': 'gdm', 'pkg_version': '1:50.1-3.stillos.1'} [2026-06-09 15:10:11,111][ INFO][PID:2177523] Finished build: id=10583562 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack chroot=srpm-builds [2026-06-09 15:10:11,141][ INFO][PID:2177523] Worker succeeded build, took 47.9327666759491 [2026-06-09 15:10:11,153][ INFO][PID:2177523] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "still", "project_name": "stillos-10-wayland-enablement-stack", "project_dirname": "stillos-10-wayland-enablement-stack", "submitter": "still", "ended_on": 1781017811.141735, "started_on": 1781017763.2089684, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10583562", "build_id": 10583562, "package_name": "gdm", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -euo pipefail\\np=gdm; w=\\\"$PWD/work-$p\\\"; out=\\\"${COPR_RESULTDIR:-$PWD}\\\"; rm -rf \\\"$w\\\"; mkdir -p \\\"$w/fs\\\" \\\"$w/f\\\" \\\"$out\\\"\\nfr=(--repofrompath=f44,https://download.fedoraproject.org/pub/fedora/linux/releases/44/Everything/source/tree/ --repofrompath=f44u,https://download.fedoraproject.org/pub/fedora/linux/updates/44/Everything/source/tree/ --enablerepo=f44 --enablerepo=f44u)\\n(cd \\\"$w/fs\\\"; dnf -q download --source --disablerepo='*' --setopt='*.gpgcheck=0' --setopt='*.repo_gpgcheck=0' \\\"${fr[@]}\\\" \\\"$p\\\" >&2)\\nrpm2cpio \\\"$(ls \\\"$w/fs\\\"/*.src.rpm|tail -1)\\\" | (cd \\\"$w/f\\\"; cpio -idm --quiet)\\ns=\\\"$(ls \\\"$w/f\\\"/*.spec|head -1)\\\"\\ncat > \\\"$w/f/userdb-mask-mkdir-flag.patch\\\" <<'PATCH'\\nFrom: stillHQ \\nSubject: [PATCH] userdb: mask mkdir flag for systemd 257 runtime\\n\\nGDM 50 can be built against libsystemd headers that define\\nSD_VARLINK_SERVER_MODE_MKDIR_0755, but stillOS/EL10 currently runs on\\nsystemd 257. That runtime does not understand the newer flag and GDM\\nfails to start the greeter userdb service.\\n--- a/daemon/gdm-dynamic-user-store.c\\n+++ b/daemon/gdm-dynamic-user-store.c\\n@@ -42,6 +42,13 @@\\n #ifndef SD_VARLINK_SERVER_MODE_MKDIR_0755\\n #define SD_VARLINK_SERVER_MODE_MKDIR_0755 0\\n #endif\\n+\\n+/*\\n+ * EL10 ships systemd 257. If this package is built with newer systemd\\n+ * headers, the flag is compiled in but rejected by the older runtime.\\n+ */\\n+#undef SD_VARLINK_SERVER_MODE_MKDIR_0755\\n+#define SD_VARLINK_SERVER_MODE_MKDIR_0755 0\\n \\n struct _GdmDynamicUserStore\\n {\\nPATCH\\nsed -i '/^Source0:/a Patch999: userdb-mask-mkdir-flag.patch' \\\"$s\\\"\\ncat > \\\"$w/f/disable-userdb-on-el10.patch\\\" <<'PATCH'\\nFrom: stillHQ \\nSubject: [PATCH] build: disable dynamic userdb on EL10\\n\\nEL10 currently denies GDM's dynamic userdb socket and passwd lock paths at\\nruntime. Use GDM's static preallocated greeter-user fallback until the EL10\\nsystemd/userdb integration is compatible with GDM 50.\\n--- a/meson.build\\n+++ b/meson.build\\n@@ -74,7 +74,7 @@ if logind_provider == 'systemd'\\n libsystemd_dep = dependency('libsystemd')\\n logind_dep = libsystemd_dep\\n \\n- have_userdb = libsystemd_dep.version().version_compare('>= 257')\\n+ have_userdb = false\\n \\n # Our range is documented at https://systemd.io/UIDS-GIDS/\\n greeter_uid_min = systemd_dep.get_variable('greeter_uid_min', default_value: '60578')\\nPATCH\\nsed -i '/^Patch999:/a Patch1000: disable-userdb-on-el10.patch' \\\"$s\\\"\\ncat > \\\"$w/f/gdm.sysusers\\\" <<'EOF'\\nu gdm 42 \\\"GNOME Display Manager\\\" /var/lib/gdm\\nu gdm-greeter 60578:42 \\\"GNOME Display Manager Greeter\\\" /run/gdm/home/gdm-greeter /sbin/nologin\\nu gnome-initial-setup 60579:42 \\\"GNOME Initial Setup\\\" /run/gdm/home/gnome-initial-setup /sbin/nologin\\nEOF\\nsed -i -E '/^Patch[0-9]*:.*(fedora|Fedora|branding|logo|wallpaper|artwork)/d' \\\"$s\\\"\\nsed -i -E 's/^Release:.*/Release: 3.stillos.1%{?dist}/;s/^%autochangelog/%changelog\\\\n* Tue Jun 09 2026 stillHQ - stillOS rebuild\\\\n- Disable GDM dynamic userdb on EL10 and preallocate greeter users\\\\n\\\\n* Mon Jun 08 2026 stillHQ - stillOS rebuild\\\\n- Mask GDM userdb varlink mkdir flag for systemd 257 runtime\\\\n\\\\n* Fri May 29 2026 stillHQ - stillOS rebuild\\\\n- Rebuild for stillOS Wayland enablement/' \\\"$s\\\"\\ncp -a \\\"$w/f/.\\\" \\\"$out/\\\"\\nrpmbuild -bs \\\"$s\\\" --define \\\"_sourcedir $w/f\\\" --define \\\"_srcrpmdir $out\\\" --define \\\"_builddir $w/b\\\"\\n\", \"chroot\": \"rhel+epel-10-x86_64\", \"builddeps\": \"dnf dnf-plugins-core rpm-build rpmdevtools cpio curl unzip sed grep findutils patch diffutils coreutils gawk\", \"resultdir\": \".\", \"repos\": \"\"}", "pkg_name": "gdm", "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": "https://download.copr.fedorainfracloud.org/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/gdm-50.1-3.stillos.1.src.rpm", "uses_devel_repo": null, "sandbox": "still/stillos-10-wayland-enablement-stack--still", "results": { "architecture_specific_tags": { "almalinux-10": {}, "rhel+epel-10": {} }, "name": "gdm", "epoch": 1, "version": "50.1", "release": "3.stillos.1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "distributions_in_build": [ "almalinux-10", "rhel+epel-10" ], "distributions_in_project": [ "almalinux-10", "rhel+epel-10" ], "destdir": "/var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/still/stillos-10-wayland-enablement-stack", "result_dir": "10583562", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "1:50.1-3.stillos.1", "id": 10583562, "mockchain_macros": { "copr_username": "still", "copr_projectname": "stillos-10-wayland-enablement-stack", "vendor": "Fedora Project COPR (still/stillos-10-wayland-enablement-stack)" } } ] } [2026-06-09 15:10:11,438][ INFO][PID:2177523] Sending fedora-messaging bus message in build.end [2026-06-09 15:10:11,538][ INFO][PID:2177523] Compressing /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/builder-live.log by gzip [2026-06-09 15:10:11,549][ INFO][PID:2177523] Running command 'gzip /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/builder-live.log' as PID 2193401 [2026-06-09 15:10:11,572][ INFO][PID:2177523] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/builder-live.log) [2026-06-09 15:10:11,582][ INFO][PID:2177523] Compressing /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/backend.log by gzip [2026-06-09 15:10:11,584][ INFO][PID:2177523] Running command 'gzip /var/lib/copr/public_html/results/still/stillos-10-wayland-enablement-stack/srpm-builds/10583562/backend.log' as PID 2193406