-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsystemd.spec
2643 lines (2559 loc) · 113 KB
/
systemd.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# This file is auto-generated. DO NOT EDIT
# Generated by: autospec.py
# Using build pattern: meson
# autospec version: v20
# autospec commit: f35655a
#
Name : systemd
Version : 255.9
Release : 440
URL : https://github.com/systemd/systemd-stable/archive/v255.9/systemd-stable-255.9.tar.gz
Source0 : https://github.com/systemd/systemd-stable/archive/v255.9/systemd-stable-255.9.tar.gz
Source1 : systemd-timesyncd-fix-localstatedir.service
Source2 : no-hibernate.conf
Summary : systemd System and Service Manager
Group : Development/Tools
License : BSD-2-Clause BSD-3-Clause CC0-1.0 GPL-2.0 LGPL-2.0 LGPL-2.1 MIT OFL-1.1
Requires: systemd-autostart = %{version}-%{release}
Requires: systemd-bin = %{version}-%{release}
Requires: systemd-config = %{version}-%{release}
Requires: systemd-data = %{version}-%{release}
Requires: systemd-lib = %{version}-%{release}
Requires: systemd-license = %{version}-%{release}
Requires: systemd-locales = %{version}-%{release}
Requires: systemd-man = %{version}-%{release}
Requires: systemd-services = %{version}-%{release}
Requires: libcap
BuildRequires : Linux-PAM-dev
BuildRequires : Linux-PAM-dev32
BuildRequires : acl-dev
BuildRequires : acl-dev32
BuildRequires : bash-completion-dev
BuildRequires : buildreq-meson
BuildRequires : cryptsetup-dev
BuildRequires : curl-dev
BuildRequires : dbus-dev
BuildRequires : dbus-dev32
BuildRequires : docbook-xml
BuildRequires : elfutils-dev
BuildRequires : gcc-dev32
BuildRequires : gcc-libgcc32
BuildRequires : gcc-libstdc++32
BuildRequires : gettext-bin
BuildRequires : gettext-dev
BuildRequires : glib-bin
BuildRequires : glib-dev
BuildRequires : glib-dev32
BuildRequires : glibc-dev32
BuildRequires : glibc-libc32
BuildRequires : gnu-efi
BuildRequires : gnu-efi-dev
BuildRequires : gnu-efi-staticdev
BuildRequires : gperf
BuildRequires : intltool
BuildRequires : intltool-dev
BuildRequires : iptables-dev
BuildRequires : iptables-dev32
BuildRequires : kmod-dev
BuildRequires : kmod-dev32
BuildRequires : libcap-dev
BuildRequires : libcap-dev32
BuildRequires : libcgroup-dev
BuildRequires : libffi-dev
BuildRequires : libfido2
BuildRequires : libfido2-dev
BuildRequires : libgcrypt-dev
BuildRequires : libgcrypt-dev32
BuildRequires : libgpg-error-dev
BuildRequires : libmicrohttpd-dev
BuildRequires : libpwquality-dev
BuildRequires : libseccomp-dev
BuildRequires : libseccomp-dev32
BuildRequires : libxcrypt-dev32
BuildRequires : libxkbcommon-dev
BuildRequires : libxslt-bin
BuildRequires : llvm
BuildRequires : openssl-dev
BuildRequires : pkg-config-dev
BuildRequires : pkgconfig(32bzip2)
BuildRequires : pkgconfig(32p11-kit-1)
BuildRequires : pkgconfig(32xkbcommon)
BuildRequires : pkgconfig(audit)
BuildRequires : pkgconfig(bash-completion)
BuildRequires : pkgconfig(bzip2)
BuildRequires : pkgconfig(libbpf)
BuildRequires : pkgconfig(passwdqc)
BuildRequires : pkgconfig(polkit-gobject-1)
BuildRequires : pkgconfig(pwquality)
BuildRequires : pkgconfig(xkbcommon)
BuildRequires : pkgconfig(zlib)
BuildRequires : polkit-dev
BuildRequires : pypi(jinja2)
BuildRequires : pypi(pefile)
BuildRequires : pypi-lxml
BuildRequires : pypi-pyelftools
BuildRequires : python3
BuildRequires : readline-dev
BuildRequires : shadow
BuildRequires : tpm2-tss-dev
BuildRequires : util-linux-dev
BuildRequires : util-linux-dev32
BuildRequires : util-linux-extras
BuildRequires : zlib-dev32
BuildRequires : zstd-dev
BuildRequires : zstd-dev32
Patch1: 0001-journal-raise-compression-threshold.patch
Patch2: 0002-journal-Add-option-to-skip-boot-kmsg-events.patch
Patch3: 0003-core-use-mmap-to-load-files.patch
Patch4: 0005-journal-flush-var-kmsg-after-starting-disable-kmsg-f.patch
Patch5: 0006-logind-pam-fix-systemd-user-to-include-common-sessio.patch
Patch6: 0007-sd-event-return-malloc-memory-reserves-when-main-loo.patch
Patch7: 0008-efi-boot-generator-Do-not-automount-boot-partition.patch
Patch8: 0009-core-do-not-apply-presets.patch
Patch9: 0011-Ship-default-services-in-system-unit-dir.patch
Patch10: 0012-bootctl-Add-force-option-to-enable-chroot-install-re.patch
Patch11: 0013-tmpfiles-Make-var-cache-ldconfig-world-readable.patch
Patch12: 0014-Set-a-default-unique-hostname-when-it-is-either-clr-.patch
Patch13: 0016-not-load-iptables.patch
Patch14: 0018-Enable-BBR-Bottleneck-Bandwidth-and-RTT.patch
Patch15: 0019-network-online-complete-once-one-link-is-online-not-.patch
Patch16: 0020-DHCP-retry-faster.patch
Patch17: 0021-Remove-libm-memory-overhead.patch
Patch18: 0022-skip-not-present-ACPI-devices.patch
Patch19: 0023-Ensure-var-run-is-never-a-directory.patch
Patch20: 0024-Make-timesyncd-a-simple-service.patch
Patch21: 0027-Don-t-do-transient-hostnames-we-set-ours-already.patch
Patch22: 0028-don-t-use-libm-just-for-integer-exp10.patch
Patch23: 0029-Notify-systemd-earlier-that-resolved-is-ready.patch
Patch24: 0030-Hand-off-coredumps-to-a-wrapper-that-will-optionally.patch
Patch25: 0032-Do-not-enable-audit-by-default-in-the-journal.patch
Patch26: 0034-Localize-1-symbol.patch
Patch27: 0036-Disable-LLDP-listening-by-default.patch
Patch28: 0037-units-use-var-swapfile-if-found.patch
Patch29: elfsection.patch
%description
systemd System and Service Manager
WEB SITE:
https://systemd.io
GIT:
[email protected]:systemd/systemd.git
https://github.com/systemd/systemd
%package autostart
Summary: autostart components for the systemd package.
Group: Default
%description autostart
autostart components for the systemd package.
%package bin
Summary: bin components for the systemd package.
Group: Binaries
Requires: systemd-data = %{version}-%{release}
Requires: systemd-config = %{version}-%{release}
Requires: systemd-license = %{version}-%{release}
Requires: systemd-services = %{version}-%{release}
%description bin
bin components for the systemd package.
%package config
Summary: config components for the systemd package.
Group: Default
%description config
config components for the systemd package.
%package data
Summary: data components for the systemd package.
Group: Data
%description data
data components for the systemd package.
%package dev
Summary: dev components for the systemd package.
Group: Development
Requires: systemd-lib = %{version}-%{release}
Requires: systemd-bin = %{version}-%{release}
Requires: systemd-data = %{version}-%{release}
Provides: systemd-devel = %{version}-%{release}
Requires: systemd = %{version}-%{release}
%description dev
dev components for the systemd package.
%package dev32
Summary: dev32 components for the systemd package.
Group: Default
Requires: systemd-lib32 = %{version}-%{release}
Requires: systemd-bin = %{version}-%{release}
Requires: systemd-data = %{version}-%{release}
Requires: systemd-dev = %{version}-%{release}
%description dev32
dev32 components for the systemd package.
%package doc
Summary: doc components for the systemd package.
Group: Documentation
Requires: systemd-man = %{version}-%{release}
%description doc
doc components for the systemd package.
%package extras
Summary: extras components for the systemd package.
Group: Default
%description extras
extras components for the systemd package.
%package extras-networkd-autostart
Summary: extras-networkd-autostart components for the systemd package.
Group: Default
%description extras-networkd-autostart
extras-networkd-autostart components for the systemd package.
%package lib
Summary: lib components for the systemd package.
Group: Libraries
Requires: systemd-data = %{version}-%{release}
Requires: systemd-license = %{version}-%{release}
%description lib
lib components for the systemd package.
%package lib32
Summary: lib32 components for the systemd package.
Group: Default
Requires: systemd-data = %{version}-%{release}
Requires: systemd-license = %{version}-%{release}
%description lib32
lib32 components for the systemd package.
%package license
Summary: license components for the systemd package.
Group: Default
%description license
license components for the systemd package.
%package locales
Summary: locales components for the systemd package.
Group: Default
%description locales
locales components for the systemd package.
%package man
Summary: man components for the systemd package.
Group: Default
%description man
man components for the systemd package.
%package services
Summary: services components for the systemd package.
Group: Systemd services
Requires: systemd
%description services
services components for the systemd package.
%prep
%setup -q -n systemd-stable-255.9
cd %{_builddir}/systemd-stable-255.9
%patch -P 1 -p1
%patch -P 2 -p1
%patch -P 3 -p1
%patch -P 4 -p1
%patch -P 5 -p1
%patch -P 6 -p1
%patch -P 7 -p1
%patch -P 8 -p1
%patch -P 9 -p1
%patch -P 10 -p1
%patch -P 11 -p1
%patch -P 12 -p1
%patch -P 13 -p1
%patch -P 14 -p1
%patch -P 15 -p1
%patch -P 16 -p1
%patch -P 17 -p1
%patch -P 18 -p1
%patch -P 19 -p1
%patch -P 20 -p1
%patch -P 21 -p1
%patch -P 22 -p1
%patch -P 23 -p1
%patch -P 24 -p1
%patch -P 25 -p1
%patch -P 26 -p1
%patch -P 27 -p1
%patch -P 28 -p1
%patch -P 29 -p1
pushd ..
cp -a systemd-stable-255.9 build32
popd
%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C.UTF-8
export SOURCE_DATE_EPOCH=1728582351
export GCC_IGNORE_WERROR=1
CLEAR_INTERMEDIATE_CFLAGS="-O2 -g -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=32 -Wformat -Wformat-security -Wno-error -Wl,-z,max-page-size=0x4000 -march=westmere"
CLEAR_INTERMEDIATE_CXXFLAGS=$CLEAR_INTERMEDIATE_CFLAGS
CLEAR_INTERMEDIATE_FFLAGS="-O2 -g -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=32 -Wno-error -Wl,-z,max-page-size=0x4000 -march=westmere"
CLEAR_INTERMEDIATE_FCFLAGS=$CLEAR_INTERMEDIATE_FFLAGS
CLEAR_INTERMEDIATE_CFLAGS="$CLEAR_INTERMEDIATE_CFLAGS -fno-lto "
CLEAR_INTERMEDIATE_FCFLAGS="$CLEAR_INTERMEDIATE_FFLAGS -fno-lto "
CLEAR_INTERMEDIATE_FFLAGS="$CLEAR_INTERMEDIATE_FFLAGS -fno-lto "
CLEAR_INTERMEDIATE_CXXFLAGS="$CLEAR_INTERMEDIATE_CXXFLAGS -fno-lto "
CFLAGS="$CLEAR_INTERMEDIATE_CFLAGS"
CXXFLAGS="$CLEAR_INTERMEDIATE_CXXFLAGS"
FFLAGS="$CLEAR_INTERMEDIATE_FFLAGS"
FCFLAGS="$CLEAR_INTERMEDIATE_FCFLAGS"
ASFLAGS="$CLEAR_INTERMEDIATE_ASFLAGS"
LDFLAGS="$CLEAR_INTERMEDIATE_LDFLAGS"
export GOAMD64=v2
meson --libdir=lib64 --prefix=/usr --buildtype=plain -Dsmack=false \
-Dsysvinit-path= \
-Dsysvrcnd-path= \
-Dxz=false \
-Dgcrypt=true \
-Dlz4=false \
-Dqrencode=false \
-Dpcre2=false \
-Dlibidn=false \
-Dlibidn2=false \
-Dman=true \
-Ddefault-kill-user-processes=false \
-Dntp-servers="_gateway gateway 0.clearlinux.pool.ntp.org 1.clearlinux.pool.ntp.org 2.clearlinux.pool.ntp.org 3.clearlinux.pool.ntp.org time.intel.com" \
-Ddefault-dnssec=no \
-Dzstd=true \
-Dsbat-distro=clearlinux \
-Dsbat-distro-summary="Clear Linux OS for Intel (R) Architecture" \
-Dsbat-distro-url=https://clearlinux.org/ \
-Dlink-networkd-shared=true \
-Dlink-timesyncd-shared=true \
-Dbootloader=true \
-Ddefault-user-shell=/usr/bin/bash \
-Ddebug-shell=/usr/bin/bash builddir
ninja -v -C builddir
pushd ../build32/
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/usr/share/pkgconfig"
ASFLAGS="${CLEAR_INTERMEDIATE_ASFLAGS}${CLEAR_INTERMEDIATE_ASFLAGS:+ }--32"
CFLAGS="${CLEAR_INTERMEDIATE_CFLAGS}${CLEAR_INTERMEDIATE_CFLAGS:+ }-m32 -mstackrealign"
CXXFLAGS="${CLEAR_INTERMEDIATE_CXXFLAGS}${CLEAR_INTERMEDIATE_CXXFLAGS:+ }-m32 -mstackrealign"
LDFLAGS="${CLEAR_INTERMEDIATE_LDFLAGS}${CLEAR_INTERMEDIATE_LDFLAGS:+ }-m32 -mstackrealign"
meson --libdir=lib32 --prefix=/usr --buildtype=plain -Dsmack=false \
-Dsysvinit-path= \
-Dsysvrcnd-path= \
-Dxz=false \
-Dgcrypt=true \
-Dlz4=false \
-Dqrencode=false \
-Dpcre2=false \
-Dlibidn=false \
-Dlibidn2=false \
-Dman=true \
-Ddefault-kill-user-processes=false \
-Dntp-servers="_gateway gateway 0.clearlinux.pool.ntp.org 1.clearlinux.pool.ntp.org 2.clearlinux.pool.ntp.org 3.clearlinux.pool.ntp.org time.intel.com" \
-Ddefault-dnssec=no \
-Dzstd=true \
-Dsbat-distro=clearlinux \
-Dsbat-distro-summary="Clear Linux OS for Intel (R) Architecture" \
-Dsbat-distro-url=https://clearlinux.org/ \
-Dlink-networkd-shared=true \
-Dlink-timesyncd-shared=true \
-Dbootloader=true \
-Ddefault-user-shell=/usr/bin/bash \
-Ddebug-shell=/usr/bin/bash -Dlibcryptsetup=false \
-Dgnutls=false \
-Dlibcurl=false \
-Delfutils=false \
-Dmicrohttpd=false \
-Dremote=false \
-Dxz=false \
-Dgcrypt=false \
-Dopenssl=false \
-Daudit=false \
-Dpolkit=false \
-Dzstd=false builddir
ninja -v -C builddir
popd
%check
export LANG=C.UTF-8
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
ninja -C builddir test ||:
%install
export GCC_IGNORE_WERROR=1
CLEAR_INTERMEDIATE_CFLAGS="-O2 -g -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=32 -Wformat -Wformat-security -Wno-error -Wl,-z,max-page-size=0x4000 -march=westmere"
CLEAR_INTERMEDIATE_CXXFLAGS=$CLEAR_INTERMEDIATE_CFLAGS
CLEAR_INTERMEDIATE_FFLAGS="-O2 -g -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=32 -Wno-error -Wl,-z,max-page-size=0x4000 -march=westmere"
CLEAR_INTERMEDIATE_FCFLAGS=$CLEAR_INTERMEDIATE_FFLAGS
CLEAR_INTERMEDIATE_CFLAGS="$CLEAR_INTERMEDIATE_CFLAGS -fno-lto "
CLEAR_INTERMEDIATE_FCFLAGS="$CLEAR_INTERMEDIATE_FFLAGS -fno-lto "
CLEAR_INTERMEDIATE_FFLAGS="$CLEAR_INTERMEDIATE_FFLAGS -fno-lto "
CLEAR_INTERMEDIATE_CXXFLAGS="$CLEAR_INTERMEDIATE_CXXFLAGS -fno-lto "
CFLAGS="$CLEAR_INTERMEDIATE_CFLAGS"
CXXFLAGS="$CLEAR_INTERMEDIATE_CXXFLAGS"
FFLAGS="$CLEAR_INTERMEDIATE_FFLAGS"
FCFLAGS="$CLEAR_INTERMEDIATE_FCFLAGS"
ASFLAGS="$CLEAR_INTERMEDIATE_ASFLAGS"
LDFLAGS="$CLEAR_INTERMEDIATE_LDFLAGS"
export GOAMD64=v2
mkdir -p %{buildroot}/usr/share/package-licenses/systemd
cp %{_builddir}/systemd-stable-%{version}/LICENSE.GPL2 %{buildroot}/usr/share/package-licenses/systemd/06877624ea5c77efe3b7e39b0f909eda6e25a4ec || :
cp %{_builddir}/systemd-stable-%{version}/LICENSE.LGPL2.1 %{buildroot}/usr/share/package-licenses/systemd/01a6b4bf79aca9b556822601186afab86e8c4fbf || :
cp %{_builddir}/systemd-stable-%{version}/LICENSES/BSD-2-Clause.txt %{buildroot}/usr/share/package-licenses/systemd/ea97eb88ae53ec41e26f8542176ab986d7bc943a || :
cp %{_builddir}/systemd-stable-%{version}/LICENSES/BSD-3-Clause.txt %{buildroot}/usr/share/package-licenses/systemd/5aebbff6ecbe1754fc59dc9b27e1ea8692384d64 || :
cp %{_builddir}/systemd-stable-%{version}/LICENSES/CC0-1.0.txt %{buildroot}/usr/share/package-licenses/systemd/82da472f6d00dc5f0a651f33ebb320aa9c7b08d0 || :
cp %{_builddir}/systemd-stable-%{version}/LICENSES/LGPL-2.0-or-later.txt %{buildroot}/usr/share/package-licenses/systemd/5c6c38fa1b6ac7c66252c83d1203e997ae3d1c98 || :
cp %{_builddir}/systemd-stable-%{version}/LICENSES/MIT-0.txt %{buildroot}/usr/share/package-licenses/systemd/99942a5202ca4ca2f2025bbf35266bc225876236 || :
cp %{_builddir}/systemd-stable-%{version}/LICENSES/MIT.txt %{buildroot}/usr/share/package-licenses/systemd/adadb67a9875aeeac285309f1eab6e47d9ee08a7 || :
cp %{_builddir}/systemd-stable-%{version}/LICENSES/OFL-1.1.txt %{buildroot}/usr/share/package-licenses/systemd/d9fe5ac0193fdebda45d1fe971d470beafdb2f8b || :
pushd ../build32/
DESTDIR=%{buildroot} ninja -C builddir install
if [ -d %{buildroot}/usr/lib32/pkgconfig ]
then
pushd %{buildroot}/usr/lib32/pkgconfig
for i in *.pc ; do ln -s $i 32$i ; done
popd
fi
if [ -d %{buildroot}/usr/share/pkgconfig ]
then
pushd %{buildroot}/usr/share/pkgconfig
for i in *.pc ; do ln -s $i 32$i ; done
popd
fi
popd
GOAMD64=v2
DESTDIR=%{buildroot} ninja -C builddir install
%find_lang systemd
mkdir -p %{buildroot}/usr/lib/systemd/system
install -m 0644 %{SOURCE1} %{buildroot}/usr/lib/systemd/system/systemd-timesyncd-fix-localstatedir.service
mkdir -p %{buildroot}/usr/lib/systemd/sleep.conf.d
install -m644 %{_sourcedir}/no-hibernate.conf %{buildroot}/usr/lib/systemd/sleep.conf.d/
## Remove excluded files
rm -f %{buildroot}*/usr/bin/kernel-install
rm -f %{buildroot}*/usr/bin/systemd-firstboot
rm -f %{buildroot}*/usr/lib/rpm/macros.d/macros.systemd
rm -f %{buildroot}*/usr/lib/systemd/import-pubring.gpg
rm -f %{buildroot}*/usr/lib/systemd/system-generators/systemd-hibernate-resume-generator
rm -f %{buildroot}*/usr/lib/systemd/system-generators/systemd-system-update-generator
rm -f %{buildroot}*/usr/lib/systemd/system-generators/systemd-veritysetup-generator
rm -f %{buildroot}*/usr/lib/systemd/system/ldconfig.service
rm -f %{buildroot}*/usr/lib/systemd/system/systemd-firstboot.service
rm -f %{buildroot}*/usr/lib/systemd/system/systemd-hwdb-update.service
rm -f %{buildroot}*/usr/lib/systemd/system/systemd-journal-catalog-update.service
rm -f %{buildroot}*/usr/lib/systemd/system/systemd-sysusers.service
rm -f %{buildroot}*/usr/lib/systemd/system/systemd-tmpfiles-setup-dev.service
rm -f %{buildroot}*/usr/lib/systemd/system/systemd-update-done.service
rm -f %{buildroot}*/usr/lib/systemd/system/system-update-cleanup.service
rm -f %{buildroot}*/usr/lib/systemd/system/system-update.target
rm -f %{buildroot}*/usr/lib/systemd/systemd-update-done
rm -f %{buildroot}*/usr/lib/udev/hwdb.d/20-pci-vendor-model.hwdb
rm -f %{buildroot}*/usr/share/bash-completion/completions/kernel-install
rm -f %{buildroot}*/usr/share/zsh/site-functions/_kernel-install
rm -f %{buildroot}*/var/lib/systemd/catalog/database
rm -f %{buildroot}*/var/log/README
## install_append content
# All users should be defined in the systemd-config package
rm -f %{buildroot}/usr/lib/sysusers.d/basic.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd-remote.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd-coredump.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd-journal.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd-network.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd-oom.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd-resolve.conf
rm -f %{buildroot}/usr/lib/sysusers.d/systemd-timesync.conf
rm -f %{buildroot}/usr/lib/sysusers.d/README
rmdir %{buildroot}/usr/lib/sysusers.d
# No external linking of this shared object should happen
rm -f %{buildroot}/usr/lib/systemd/libsystemd-shared.so
# These configuration files, are actually documentation only
# We have manpages for that
rm -f %{buildroot}/etc/systemd/journald.conf
rm -f %{buildroot}/etc/systemd/logind.conf
rm -f %{buildroot}/etc/systemd/resolved.conf
rm -f %{buildroot}/etc/systemd/system.conf
rm -f %{buildroot}/etc/systemd/timesyncd.conf
rm -f %{buildroot}/etc/systemd/user.conf
rm -f %{buildroot}/etc/udev/udev.conf
rm -f %{buildroot}/etc/udev/iocost.conf
rmdir %{buildroot}/etc/udev/hwdb.d
rmdir %{buildroot}/etc/udev/rules.d
rmdir %{buildroot}/etc/udev
# These are unwanted and would end up in -autostart, because %exclude isn't
# honored by -autostart auto subrpm
rm -f %{buildroot}/usr/lib/systemd/system/sysinit.target.wants/ldconfig.service
rm -f %{buildroot}/usr/lib/systemd/system/sysinit.target.wants/systemd-firstboot.service
rm -f %{buildroot}/usr/lib/systemd/system/sysinit.target.wants/systemd-hwdb-update.service
rm -f %{buildroot}/usr/lib/systemd/system/sysinit.target.wants/systemd-journal-catalog-update.service
rm -f %{buildroot}/usr/lib/systemd/system/sysinit.target.wants/systemd-sysusers.service
rm -f %{buildroot}/usr/lib/systemd/system/sysinit.target.wants/systemd-update-done.service
rm -f %{buildroot}/usr/lib/systemd/system/sysinit.target.wants/systemd-tmpfiles-setup-dev.service
rm -f %{buildroot}/usr/lib/systemd/system/sockets.target.wants/systemd-journald-audit.socket
# Do not ship broken symlinks
rm -f %{buildroot}/etc/xdg/systemd/user
rm -f %{buildroot}/usr/lib/environment.d/99-environment.conf
# Move config file into system PAM location
mv %{buildroot}/usr/lib/pam.d %{buildroot}/usr/share/.
# Move pc files to default pkgconfig dir
mv %{buildroot}/usr/share/pkgconfig/* %{buildroot}/usr/lib64/pkgconfig/
rmdir %{buildroot}/usr/share/pkgconfig/
# exclude hwdb for pci device id vendors - we don't want this in containers
# or VMs. An update trigger will remake the full hwdb for non-vm cases.
mkdir -p %{buildroot}/usr/lib/udev/hwdb.d/20
mv %{buildroot}/usr/lib/udev/hwdb.d/20-* %{buildroot}/usr/lib/udev/hwdb.d/20
# Pre-generate and pre-ship hwdb, to speed up first boot
builddir/udevadm hwdb --root %{buildroot} --update --usr
# restore 20-* hwdb files
mv %{buildroot}/usr/lib/udev/hwdb.d/20/* %{buildroot}/usr/lib/udev/hwdb.d/
rmdir %{buildroot}/usr/lib/udev/hwdb.d/20
# Compute catalog
builddir/journalctl --root %{buildroot} --update-catalog
# Add a hook to integrate telemetrics crashprobe with systemd-coredump
cp src/coredump/coredump-wrapper %{buildroot}/usr/lib/systemd/
# only supported plugin is "clear.install"
rm -rvf %{buildroot}/usr/lib/kernel
# Remove unused systemd plka
rm -rvf %{buildroot}/var/lib/polkit-1
# Services that are OK to restart after software update
mkdir -p %{buildroot}/usr/share/clr-service-restart
ln -sf /usr/lib/systemd/system/systemd-timesyncd.service %{buildroot}/usr/share/clr-service-restart/systemd-timesyncd.service
ln -sf /usr/lib/systemd/system/systemd-resolved.service %{buildroot}/usr/share/clr-service-restart/systemd-resolved.service
ln -sf /usr/lib/systemd/system/systemd-udevd.service %{buildroot}/usr/share/clr-service-restart/systemd-udevd.service
ln -sf /usr/lib/systemd/system/systemd-journald.service %{buildroot}/usr/share/clr-service-restart/systemd-journald.service
# fix systemd-timesyncd v242 - dir expected, was symlink before in /var/state/timesync
mkdir -p %{buildroot}/usr/lib/systemd/system/update-triggers.target.wants
ln -s ../systemd-timesyncd-fix-localstatedir.service %{buildroot}/usr/lib/systemd/system/update-triggers.target.wants/systemd-timesyncd-fix-localstatedir.service
# remove catalog
rm -rvf %{buildroot}/var/lib/systemd
chmod a-x %{buildroot}/usr/share/man/man*/*
## install_append end
%files
%defattr(-,root,root,-)
/usr/lib/modprobe.d/README
/usr/lib/modprobe.d/systemd.conf
/usr/lib/pcrlock.d/350-action-efi-application.pcrlock
/usr/lib/pcrlock.d/400-secureboot-separator.pcrlock.d/300-0x00000000.pcrlock
/usr/lib/pcrlock.d/400-secureboot-separator.pcrlock.d/600-0xffffffff.pcrlock
/usr/lib/pcrlock.d/500-separator.pcrlock.d/300-0x00000000.pcrlock
/usr/lib/pcrlock.d/500-separator.pcrlock.d/600-0xffffffff.pcrlock
/usr/lib/pcrlock.d/700-action-efi-exit-boot-services.pcrlock.d/300-present.pcrlock
/usr/lib/pcrlock.d/700-action-efi-exit-boot-services.pcrlock.d/600-absent.pcrlock
/usr/lib/pcrlock.d/750-enter-initrd.pcrlock
/usr/lib/pcrlock.d/800-leave-initrd.pcrlock
/usr/lib/pcrlock.d/850-sysinit.pcrlock
/usr/lib/pcrlock.d/900-ready.pcrlock
/usr/lib/pcrlock.d/950-shutdown.pcrlock
/usr/lib/pcrlock.d/990-final.pcrlock
/usr/lib/systemd/boot/efi/addonia32.efi.stub
/usr/lib/systemd/boot/efi/addonx64.efi.stub
/usr/lib/systemd/boot/efi/linuxia32.efi.stub
/usr/lib/systemd/boot/efi/linuxx64.efi.stub
/usr/lib/systemd/boot/efi/systemd-bootia32.efi
/usr/lib/systemd/boot/efi/systemd-bootx64.efi
/usr/lib/systemd/catalog/systemd.be.catalog
/usr/lib/systemd/catalog/[email protected]
/usr/lib/systemd/catalog/systemd.bg.catalog
/usr/lib/systemd/catalog/systemd.catalog
/usr/lib/systemd/catalog/systemd.da.catalog
/usr/lib/systemd/catalog/systemd.de.catalog
/usr/lib/systemd/catalog/systemd.fr.catalog
/usr/lib/systemd/catalog/systemd.hr.catalog
/usr/lib/systemd/catalog/systemd.hu.catalog
/usr/lib/systemd/catalog/systemd.it.catalog
/usr/lib/systemd/catalog/systemd.ko.catalog
/usr/lib/systemd/catalog/systemd.pl.catalog
/usr/lib/systemd/catalog/systemd.pt_BR.catalog
/usr/lib/systemd/catalog/systemd.ru.catalog
/usr/lib/systemd/catalog/systemd.sr.catalog
/usr/lib/systemd/catalog/systemd.zh_CN.catalog
/usr/lib/systemd/catalog/systemd.zh_TW.catalog
/usr/lib/systemd/coredump-wrapper
/usr/lib/systemd/network/80-6rd-tunnel.network
/usr/lib/systemd/network/80-auto-link-local.network.example
/usr/lib/systemd/network/80-container-host0.network
/usr/lib/systemd/network/80-container-vb.network
/usr/lib/systemd/network/80-container-ve.network
/usr/lib/systemd/network/80-container-vz.network
/usr/lib/systemd/network/80-vm-vt.network
/usr/lib/systemd/network/80-wifi-adhoc.network
/usr/lib/systemd/network/80-wifi-ap.network.example
/usr/lib/systemd/network/80-wifi-station.network.example
/usr/lib/systemd/network/89-ethernet.network.example
/usr/lib/systemd/network/99-default.link
/usr/lib/systemd/ntp-units.d/80-systemd-timesync.list
/usr/lib/systemd/portable/profile/default/service.conf
/usr/lib/systemd/portable/profile/nonetwork/service.conf
/usr/lib/systemd/portable/profile/strict/service.conf
/usr/lib/systemd/portable/profile/trusted/service.conf
/usr/lib/systemd/repart/definitions/confext.repart.d/10-root.conf
/usr/lib/systemd/repart/definitions/confext.repart.d/20-root-verity.conf
/usr/lib/systemd/repart/definitions/confext.repart.d/30-root-verity-sig.conf
/usr/lib/systemd/repart/definitions/portable.repart.d/10-root.conf
/usr/lib/systemd/repart/definitions/portable.repart.d/20-root-verity.conf
/usr/lib/systemd/repart/definitions/portable.repart.d/30-root-verity-sig.conf
/usr/lib/systemd/repart/definitions/sysext.repart.d/10-root.conf
/usr/lib/systemd/repart/definitions/sysext.repart.d/20-root-verity.conf
/usr/lib/systemd/repart/definitions/sysext.repart.d/30-root-verity-sig.conf
/usr/lib/systemd/resolv.conf
/usr/lib/systemd/sleep.conf.d/no-hibernate.conf
/usr/lib/systemd/system-generators/systemd-bless-boot-generator
/usr/lib/systemd/system-generators/systemd-cryptsetup-generator
/usr/lib/systemd/system-generators/systemd-debug-generator
/usr/lib/systemd/system-generators/systemd-fstab-generator
/usr/lib/systemd/system-generators/systemd-getty-generator
/usr/lib/systemd/system-generators/systemd-gpt-auto-generator
/usr/lib/systemd/system-generators/systemd-integritysetup-generator
/usr/lib/systemd/system-generators/systemd-run-generator
/usr/lib/systemd/system-preset/90-systemd.preset
/usr/lib/systemd/systemd
/usr/lib/systemd/systemd-backlight
/usr/lib/systemd/systemd-battery-check
/usr/lib/systemd/systemd-binfmt
/usr/lib/systemd/systemd-bless-boot
/usr/lib/systemd/systemd-boot-check-no-failures
/usr/lib/systemd/systemd-cgroups-agent
/usr/lib/systemd/systemd-coredump
/usr/lib/systemd/systemd-cryptsetup
/usr/lib/systemd/systemd-executor
/usr/lib/systemd/systemd-fsck
/usr/lib/systemd/systemd-growfs
/usr/lib/systemd/systemd-hibernate-resume
/usr/lib/systemd/systemd-homed
/usr/lib/systemd/systemd-homework
/usr/lib/systemd/systemd-hostnamed
/usr/lib/systemd/systemd-integritysetup
/usr/lib/systemd/systemd-journald
/usr/lib/systemd/systemd-localed
/usr/lib/systemd/systemd-logind
/usr/lib/systemd/systemd-machined
/usr/lib/systemd/systemd-makefs
/usr/lib/systemd/systemd-measure
/usr/lib/systemd/systemd-modules-load
/usr/lib/systemd/systemd-network-generator
/usr/lib/systemd/systemd-networkd
/usr/lib/systemd/systemd-networkd-wait-online
/usr/lib/systemd/systemd-oomd
/usr/lib/systemd/systemd-pcrextend
/usr/lib/systemd/systemd-pcrlock
/usr/lib/systemd/systemd-portabled
/usr/lib/systemd/systemd-pstore
/usr/lib/systemd/systemd-quotacheck
/usr/lib/systemd/systemd-random-seed
/usr/lib/systemd/systemd-remount-fs
/usr/lib/systemd/systemd-reply-password
/usr/lib/systemd/systemd-resolved
/usr/lib/systemd/systemd-rfkill
/usr/lib/systemd/systemd-shutdown
/usr/lib/systemd/systemd-sleep
/usr/lib/systemd/systemd-socket-proxyd
/usr/lib/systemd/systemd-storagetm
/usr/lib/systemd/systemd-sulogin-shell
/usr/lib/systemd/systemd-sysctl
/usr/lib/systemd/systemd-sysroot-fstab-check
/usr/lib/systemd/systemd-sysupdate
/usr/lib/systemd/systemd-time-wait-sync
/usr/lib/systemd/systemd-timedated
/usr/lib/systemd/systemd-timesyncd
/usr/lib/systemd/systemd-tpm2-setup
/usr/lib/systemd/systemd-udevd
/usr/lib/systemd/systemd-update-helper
/usr/lib/systemd/systemd-update-utmp
/usr/lib/systemd/systemd-user-runtime-dir
/usr/lib/systemd/systemd-user-sessions
/usr/lib/systemd/systemd-userdbd
/usr/lib/systemd/systemd-userwork
/usr/lib/systemd/systemd-vconsole-setup
/usr/lib/systemd/systemd-veritysetup
/usr/lib/systemd/systemd-volatile-root
/usr/lib/systemd/systemd-xdg-autostart-condition
/usr/lib/systemd/ukify
/usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator
/usr/lib/systemd/user-generators/systemd-xdg-autostart-generator
/usr/lib/systemd/user-preset/90-systemd.preset
/usr/lib/udev/ata_id
/usr/lib/udev/dmi_memory_id
/usr/lib/udev/fido_id
/usr/lib/udev/hwdb.bin
/usr/lib/udev/hwdb.d/20-dmi-id.hwdb
/usr/lib/udev/hwdb.d/20-usb-vendor-model.hwdb
/usr/lib/udev/hwdb.d/20-vmbus-class.hwdb
/usr/lib/udev/hwdb.d/60-autosuspend-chromiumos.hwdb
/usr/lib/udev/hwdb.d/60-autosuspend-fingerprint-reader.hwdb
/usr/lib/udev/hwdb.d/60-autosuspend.hwdb
/usr/lib/udev/hwdb.d/60-input-id.hwdb
/usr/lib/udev/hwdb.d/60-seat.hwdb
/usr/lib/udev/hwdb.d/70-analyzers.hwdb
/usr/lib/udev/hwdb.d/70-av-production.hwdb
/usr/lib/udev/hwdb.d/70-cameras.hwdb
/usr/lib/udev/hwdb.d/70-joystick.hwdb
/usr/lib/udev/hwdb.d/70-pda.hwdb
/usr/lib/udev/hwdb.d/70-sound-card.hwdb
/usr/lib/udev/hwdb.d/80-ieee1394-unit-function.hwdb
/usr/lib/udev/hwdb.d/README
/usr/lib/udev/iocost
/usr/lib/udev/scsi_id
%files autostart
%defattr(-,root,root,-)
/usr/lib/systemd/system/initrd-root-device.target.wants/remote-cryptsetup.target
/usr/lib/systemd/system/initrd-root-device.target.wants/remote-veritysetup.target
/usr/lib/systemd/system/initrd-root-fs.target.wants/systemd-repart.service
/usr/lib/systemd/system/initrd.target.wants/systemd-battery-check.service
/usr/lib/systemd/system/initrd.target.wants/systemd-pcrphase-initrd.service
/usr/lib/systemd/system/local-fs.target.wants/systemd-remount-fs.service
/usr/lib/systemd/system/local-fs.target.wants/tmp.mount
/usr/lib/systemd/system/machines.target.wants/var-lib-machines.mount
/usr/lib/systemd/system/multi-user.target.wants/getty.target
/usr/lib/systemd/system/multi-user.target.wants/remote-fs.target
/usr/lib/systemd/system/multi-user.target.wants/systemd-ask-password-wall.path
/usr/lib/systemd/system/multi-user.target.wants/systemd-logind.service
/usr/lib/systemd/system/multi-user.target.wants/systemd-resolved.service
/usr/lib/systemd/system/multi-user.target.wants/systemd-timesyncd.service
/usr/lib/systemd/system/multi-user.target.wants/systemd-user-sessions.service
/usr/lib/systemd/system/remote-fs.target.wants/var-lib-machines.mount
/usr/lib/systemd/system/sockets.target.wants/systemd-coredump.socket
/usr/lib/systemd/system/sockets.target.wants/systemd-journald-dev-log.socket
/usr/lib/systemd/system/sockets.target.wants/systemd-journald.socket
/usr/lib/systemd/system/sockets.target.wants/systemd-pcrextend.socket
/usr/lib/systemd/system/sockets.target.wants/systemd-sysext.socket
/usr/lib/systemd/system/sockets.target.wants/systemd-udevd-control.socket
/usr/lib/systemd/system/sockets.target.wants/systemd-udevd-kernel.socket
/usr/lib/systemd/system/swap.target.wants/var-swapfile.swap
/usr/lib/systemd/system/sysinit.target.wants/cryptsetup.target
/usr/lib/systemd/system/sysinit.target.wants/dev-hugepages.mount
/usr/lib/systemd/system/sysinit.target.wants/dev-mqueue.mount
/usr/lib/systemd/system/sysinit.target.wants/integritysetup.target
/usr/lib/systemd/system/sysinit.target.wants/kmod-static-nodes.service
/usr/lib/systemd/system/sysinit.target.wants/proc-sys-fs-binfmt_misc.automount
/usr/lib/systemd/system/sysinit.target.wants/sys-fs-fuse-connections.mount
/usr/lib/systemd/system/sysinit.target.wants/sys-kernel-config.mount
/usr/lib/systemd/system/sysinit.target.wants/sys-kernel-debug.mount
/usr/lib/systemd/system/sysinit.target.wants/sys-kernel-tracing.mount
/usr/lib/systemd/system/sysinit.target.wants/systemd-ask-password-console.path
/usr/lib/systemd/system/sysinit.target.wants/systemd-binfmt.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-boot-random-seed.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-journal-flush.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-journald.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-machine-id-commit.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-modules-load.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-pcrmachine.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-pcrphase-sysinit.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-pcrphase.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-random-seed.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-repart.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-sysctl.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-tmpfiles-setup-dev-early.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-tmpfiles-setup.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-tpm2-setup-early.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-tpm2-setup.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-udev-trigger.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-udevd.service
/usr/lib/systemd/system/sysinit.target.wants/systemd-update-utmp.service
/usr/lib/systemd/system/sysinit.target.wants/veritysetup.target
/usr/lib/systemd/system/timers.target.wants/systemd-tmpfiles-clean.timer
%files bin
%defattr(-,root,root,-)
/usr/bin/bootctl
/usr/bin/busctl
/usr/bin/coredumpctl
/usr/bin/halt
/usr/bin/homectl
/usr/bin/hostnamectl
/usr/bin/init
/usr/bin/journalctl
/usr/bin/localectl
/usr/bin/loginctl
/usr/bin/machinectl
/usr/bin/mount.ddi
/usr/bin/networkctl
/usr/bin/oomctl
/usr/bin/portablectl
/usr/bin/poweroff
/usr/bin/reboot
/usr/bin/resolvconf
/usr/bin/resolvectl
/usr/bin/shutdown
/usr/bin/systemctl
/usr/bin/systemd-ac-power
/usr/bin/systemd-analyze
/usr/bin/systemd-ask-password
/usr/bin/systemd-cat
/usr/bin/systemd-cgls
/usr/bin/systemd-cgtop
/usr/bin/systemd-confext
/usr/bin/systemd-creds
/usr/bin/systemd-cryptenroll
/usr/bin/systemd-cryptsetup
/usr/bin/systemd-delta
/usr/bin/systemd-detect-virt
/usr/bin/systemd-dissect
/usr/bin/systemd-escape
/usr/bin/systemd-id128
/usr/bin/systemd-inhibit
/usr/bin/systemd-machine-id-setup
/usr/bin/systemd-mount
/usr/bin/systemd-notify
/usr/bin/systemd-nspawn
/usr/bin/systemd-path
/usr/bin/systemd-repart
/usr/bin/systemd-resolve
/usr/bin/systemd-run
/usr/bin/systemd-socket-activate
/usr/bin/systemd-stdio-bridge
/usr/bin/systemd-sysext
/usr/bin/systemd-sysusers
/usr/bin/systemd-tmpfiles
/usr/bin/systemd-tty-ask-password-agent
/usr/bin/systemd-umount
/usr/bin/systemd-vmspawn
/usr/bin/timedatectl
/usr/bin/udevadm
/usr/bin/ukify
/usr/bin/userdbctl
/usr/bin/varlinkctl
%files config
%defattr(-,root,root,-)
/usr/lib/sysctl.d/50-coredump.conf
/usr/lib/sysctl.d/50-default.conf
/usr/lib/sysctl.d/50-pid-max.conf
/usr/lib/sysctl.d/README
/usr/lib/tmpfiles.d/README
/usr/lib/tmpfiles.d/credstore.conf
/usr/lib/tmpfiles.d/etc.conf
/usr/lib/tmpfiles.d/home.conf
/usr/lib/tmpfiles.d/journal-nocow.conf
/usr/lib/tmpfiles.d/portables.conf
/usr/lib/tmpfiles.d/provision.conf
/usr/lib/tmpfiles.d/static-nodes-permissions.conf
/usr/lib/tmpfiles.d/systemd-network.conf
/usr/lib/tmpfiles.d/systemd-nologin.conf
/usr/lib/tmpfiles.d/systemd-nspawn.conf
/usr/lib/tmpfiles.d/systemd-pstore.conf
/usr/lib/tmpfiles.d/systemd-resolve.conf
/usr/lib/tmpfiles.d/systemd-tmp.conf
/usr/lib/tmpfiles.d/systemd.conf
/usr/lib/tmpfiles.d/tmp.conf
/usr/lib/tmpfiles.d/var.conf
/usr/lib/tmpfiles.d/x11.conf
/usr/lib/udev/rules.d/50-udev-default.rules
/usr/lib/udev/rules.d/60-autosuspend.rules
/usr/lib/udev/rules.d/60-block.rules
/usr/lib/udev/rules.d/60-dmi-id.rules
/usr/lib/udev/rules.d/60-drm.rules
/usr/lib/udev/rules.d/60-evdev.rules
/usr/lib/udev/rules.d/60-fido-id.rules
/usr/lib/udev/rules.d/60-infiniband.rules
/usr/lib/udev/rules.d/60-input-id.rules
/usr/lib/udev/rules.d/60-persistent-input.rules
/usr/lib/udev/rules.d/60-persistent-storage-mtd.rules
/usr/lib/udev/rules.d/60-persistent-storage.rules
/usr/lib/udev/rules.d/60-sensor.rules
/usr/lib/udev/rules.d/60-serial.rules
/usr/lib/udev/rules.d/64-btrfs.rules
/usr/lib/udev/rules.d/70-camera.rules
/usr/lib/udev/rules.d/70-memory.rules
/usr/lib/udev/rules.d/70-mouse.rules
/usr/lib/udev/rules.d/70-power-switch.rules
/usr/lib/udev/rules.d/70-touchpad.rules
/usr/lib/udev/rules.d/70-uaccess.rules
/usr/lib/udev/rules.d/71-seat.rules
/usr/lib/udev/rules.d/73-seat-late.rules
/usr/lib/udev/rules.d/75-net-description.rules
/usr/lib/udev/rules.d/80-drivers.rules
/usr/lib/udev/rules.d/80-net-setup-link.rules
/usr/lib/udev/rules.d/81-net-dhcp.rules
/usr/lib/udev/rules.d/90-iocost.rules
/usr/lib/udev/rules.d/90-vconsole.rules
/usr/lib/udev/rules.d/99-systemd.rules
/usr/lib/udev/rules.d/README
%files data
%defattr(-,root,root,-)
/usr/share/bash-completion/completions/bootctl
/usr/share/bash-completion/completions/busctl
/usr/share/bash-completion/completions/coredumpctl
/usr/share/bash-completion/completions/homectl
/usr/share/bash-completion/completions/hostnamectl
/usr/share/bash-completion/completions/journalctl
/usr/share/bash-completion/completions/localectl
/usr/share/bash-completion/completions/loginctl
/usr/share/bash-completion/completions/machinectl
/usr/share/bash-completion/completions/networkctl
/usr/share/bash-completion/completions/oomctl
/usr/share/bash-completion/completions/portablectl
/usr/share/bash-completion/completions/resolvectl
/usr/share/bash-completion/completions/systemctl
/usr/share/bash-completion/completions/systemd-analyze
/usr/share/bash-completion/completions/systemd-cat
/usr/share/bash-completion/completions/systemd-cgls
/usr/share/bash-completion/completions/systemd-cgtop
/usr/share/bash-completion/completions/systemd-confext
/usr/share/bash-completion/completions/systemd-cryptenroll
/usr/share/bash-completion/completions/systemd-delta
/usr/share/bash-completion/completions/systemd-detect-virt
/usr/share/bash-completion/completions/systemd-dissect
/usr/share/bash-completion/completions/systemd-id128
/usr/share/bash-completion/completions/systemd-nspawn
/usr/share/bash-completion/completions/systemd-path
/usr/share/bash-completion/completions/systemd-resolve
/usr/share/bash-completion/completions/systemd-run
/usr/share/bash-completion/completions/systemd-sysext
/usr/share/bash-completion/completions/timedatectl
/usr/share/bash-completion/completions/udevadm
/usr/share/clr-service-restart/systemd-journald.service
/usr/share/clr-service-restart/systemd-resolved.service
/usr/share/clr-service-restart/systemd-timesyncd.service
/usr/share/clr-service-restart/systemd-udevd.service
/usr/share/dbus-1/interfaces/org.freedesktop.LogControl1.xml
/usr/share/dbus-1/interfaces/org.freedesktop.home1.Home.xml
/usr/share/dbus-1/interfaces/org.freedesktop.home1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.hostname1.xml
/usr/share/dbus-1/interfaces/org.freedesktop.locale1.xml
/usr/share/dbus-1/interfaces/org.freedesktop.login1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.login1.Seat.xml
/usr/share/dbus-1/interfaces/org.freedesktop.login1.Session.xml
/usr/share/dbus-1/interfaces/org.freedesktop.login1.User.xml
/usr/share/dbus-1/interfaces/org.freedesktop.machine1.Image.xml
/usr/share/dbus-1/interfaces/org.freedesktop.machine1.Machine.xml
/usr/share/dbus-1/interfaces/org.freedesktop.machine1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.network1.DHCPServer.xml
/usr/share/dbus-1/interfaces/org.freedesktop.network1.DHCPv4Client.xml
/usr/share/dbus-1/interfaces/org.freedesktop.network1.DHCPv6Client.xml
/usr/share/dbus-1/interfaces/org.freedesktop.network1.Link.xml
/usr/share/dbus-1/interfaces/org.freedesktop.network1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.network1.Network.xml
/usr/share/dbus-1/interfaces/org.freedesktop.oom1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.portable1.Image.xml
/usr/share/dbus-1/interfaces/org.freedesktop.portable1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.resolve1.DnssdService.xml
/usr/share/dbus-1/interfaces/org.freedesktop.resolve1.Link.xml
/usr/share/dbus-1/interfaces/org.freedesktop.resolve1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Automount.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Device.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Job.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Manager.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Mount.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Path.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Scope.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Service.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Slice.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Socket.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Swap.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Target.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Timer.xml
/usr/share/dbus-1/interfaces/org.freedesktop.systemd1.Unit.xml
/usr/share/dbus-1/interfaces/org.freedesktop.timedate1.xml
/usr/share/dbus-1/services/org.freedesktop.systemd1.service
/usr/share/dbus-1/system-services/org.freedesktop.home1.service