-
Notifications
You must be signed in to change notification settings - Fork 0
/
ninja_install_log
2101 lines (2070 loc) · 150 KB
/
ninja_install_log
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
[root@7e5d7275e145 build]# ninja install
[1/2] Install the project...
-- Install configuration: "Debug"
-- Installing: /usr/local/lib64/ceph/extblkdev/libceph_ebd_vdo.so
-- Set runtime path of "/usr/local/lib64/ceph/extblkdev/libceph_ebd_vdo.so" to "/usr/local/lib64/ceph"
-- Installing: /usr/local/lib64/ceph/libceph-common.so.2
-- Set runtime path of "/usr/local/lib64/ceph/libceph-common.so.2" to "/usr/local/lib64/ceph"
-- Installing: /usr/local/lib64/librados_tp.so.2.0.0
-- Installing: /usr/local/lib64/librados_tp.so.2
-- Installing: /usr/local/lib64/librados_tp.so
-- Installing: /usr/local/lib64/libosd_tp.so.1.0.0
-- Installing: /usr/local/lib64/libosd_tp.so.1
-- Installing: /usr/local/lib64/libosd_tp.so
-- Installing: /usr/local/lib64/libos_tp.so.1.0.0
-- Installing: /usr/local/lib64/libos_tp.so.1
-- Installing: /usr/local/lib64/libos_tp.so
-- Installing: /usr/local/lib64/librgw_rados_tp.so.2.0.0
-- Installing: /usr/local/lib64/librgw_rados_tp.so.2
-- Installing: /usr/local/lib64/librgw_rados_tp.so
-- Installing: /usr/local/lib64/librgw_op_tp.so.2.0.0
-- Installing: /usr/local/lib64/librgw_op_tp.so.2
-- Installing: /usr/local/lib64/librgw_op_tp.so
-- Installing: /usr/local/lib64/librbd_tp.so.1.0.0
-- Installing: /usr/local/lib64/librbd_tp.so.1
-- Installing: /usr/local/lib64/librbd_tp.so
-- Installing: /usr/local/lib64/rados-classes/libcls_sdk.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_sdk.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_sdk.so
-- Installing: /usr/local/lib64/rados-classes/libcls_hello.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_hello.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_hello.so
-- Installing: /usr/local/lib64/rados-classes/libcls_numops.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_numops.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_numops.so
-- Installing: /usr/local/lib64/rados-classes/libcls_rbd.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_rbd.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_rbd.so
-- Installing: /usr/local/lib64/rados-classes/libcls_lock.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_lock.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_lock.so
-- Installing: /usr/local/lib64/rados-classes/libcls_otp.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_otp.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_otp.so
-- Installing: /usr/local/lib64/rados-classes/libcls_refcount.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_refcount.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_refcount.so
-- Installing: /usr/local/lib64/rados-classes/libcls_version.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_version.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_version.so
-- Installing: /usr/local/lib64/rados-classes/libcls_log.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_log.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_log.so
-- Installing: /usr/local/lib64/rados-classes/libcls_timeindex.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_timeindex.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_timeindex.so
-- Installing: /usr/local/lib64/rados-classes/libcls_user.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_user.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_user.so
-- Installing: /usr/local/lib64/rados-classes/libcls_journal.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_journal.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_journal.so
-- Installing: /usr/local/lib64/rados-classes/libcls_rgw.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_rgw.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_rgw.so
-- Installing: /usr/local/lib64/rados-classes/libcls_cephfs.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_cephfs.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_cephfs.so
-- Installing: /usr/local/lib64/rados-classes/libcls_lua.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_lua.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_lua.so
-- Installing: /usr/local/lib64/rados-classes/libcls_cas.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_cas.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_cas.so
-- Installing: /usr/local/lib64/rados-classes/libcls_queue.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_queue.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_queue.so
-- Installing: /usr/local/lib64/rados-classes/libcls_rgw_gc.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_rgw_gc.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_rgw_gc.so
-- Installing: /usr/local/lib64/rados-classes/libcls_2pc_queue.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_2pc_queue.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_2pc_queue.so
-- Installing: /usr/local/lib64/rados-classes/libcls_cmpomap.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_cmpomap.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_cmpomap.so
-- Installing: /usr/local/lib64/rados-classes/libcls_fifo.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_fifo.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_fifo.so
-- Installing: /usr/local/lib64/rados-classes/libcls_test_remote_reads.so.1.0.0
-- Installing: /usr/local/lib64/rados-classes/libcls_test_remote_reads.so.1
-- Installing: /usr/local/lib64/rados-classes/libcls_test_remote_reads.so
-- Installing: /usr/local/include/libcephsqlite.h
-- Installing: /usr/local/include/rados/librados.h
-- Installing: /usr/local/include/rados/rados_types.h
-- Installing: /usr/local/include/rados/rados_types.hpp
-- Installing: /usr/local/include/rados/librados_fwd.hpp
-- Installing: /usr/local/include/rados/librados.hpp
-- Installing: /usr/local/include/rados/buffer.h
-- Installing: /usr/local/include/rados/buffer_fwd.h
-- Installing: /usr/local/include/rados/inline_memory.h
-- Installing: /usr/local/include/rados/page.h
-- Installing: /usr/local/include/rados/crc32c.h
-- Installing: /usr/local/include/rados/objclass.h
-- Installing: /usr/local/include/radosstriper/libradosstriper.h
-- Installing: /usr/local/include/radosstriper/libradosstriper.hpp
-- Installing: /usr/local/include/rbd/features.h
-- Installing: /usr/local/include/rbd/librbd.h
-- Installing: /usr/local/include/rbd/librbd.hpp
-- Installing: /usr/local/include/rados/librgw.h
-- Installing: /usr/local/include/rados/rgw_file.h
-- Installing: /usr/local/include/cephfs/libcephfs.h
-- Installing: /usr/local/include/cephfs/ceph_ll_client.h
-- Installing: /usr/local/include/cephfs/types.h
-- Installing: /usr/local/lib64/librados.so.2.0.0
-- Installing: /usr/local/lib64/librados.so.2
-- Set runtime path of "/usr/local/lib64/librados.so.2.0.0" to "/usr/local/lib64/ceph"
-- Installing: /usr/local/lib64/librados.so
-- Installing: /usr/local/lib64/libradosstriper.so.1.0.0
-- Installing: /usr/local/lib64/libradosstriper.so.1
-- Set runtime path of "/usr/local/lib64/libradosstriper.so.1.0.0" to "/usr/local/lib64/ceph"
-- Installing: /usr/local/lib64/libradosstriper.so
-- Installing: /usr/local/bin/ceph-mgr
-- Set runtime path of "/usr/local/bin/ceph-mgr" to "/usr/local/lib64/ceph"
-- Installing: /usr/local/bin/ceph-exporter
-- Set runtime path of "/usr/local/bin/ceph-exporter" to "/usr/local/lib64/ceph"
-- Installing: /usr/local/bin/librados-config
-- Set runtime path of "/usr/local/bin/librados-config" to "/usr/local/lib64/ceph"
running build
running build_ext
cythoning rados.pyx to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/pyrex/rados.c
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/pyrex
running install
running install_lib
creating /usr/local/lib64/python3.6
creating /usr/local/lib64/python3.6/site-packages
copying /root/project/stor/ceph/xb/docker/ceph/build/lib/cython_modules/lib.3/rgw.cpython-36m-x86_64-linux-gnu.so -> /usr/local/lib64/python3.6/site-packages
copying /root/project/stor/ceph/xb/docker/ceph/build/lib/cython_modules/lib.3/rados.cpython-36m-x86_64-linux-gnu.so -> /usr/local/lib64/python3.6/site-packages
copying /root/project/stor/ceph/xb/docker/ceph/build/lib/cython_modules/lib.3/cephfs.cpython-36m-x86_64-linux-gnu.so -> /usr/local/lib64/python3.6/site-packages
copying /root/project/stor/ceph/xb/docker/ceph/build/lib/cython_modules/lib.3/rbd.cpython-36m-x86_64-linux-gnu.so -> /usr/local/lib64/python3.6/site-packages
running install_egg_info
running egg_info
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info
writing /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info/PKG-INFO
writing dependency_links to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info/dependency_links.txt
writing top-level names to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info/top_level.txt
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info/SOURCES.txt'
reading manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info/SOURCES.txt'
Copying /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rados/rados.egg-info to /usr/local/lib64/python3.6/site-packages/rados-2.0.0-py3.6.egg-info
running install_scripts
writing list of installed files to '/dev/null'
Error compiling Cython file:
------------------------------------------------------------
...
#
# Shared object for librbdpy
#
# Copyright 2016 Mehdi Abaakouk <[email protected]>
IF BUILD_DOC:
^
------------------------------------------------------------
rados.pxd:7:3: Compile-time name 'BUILD_DOC' not defined
Error compiling Cython file:
------------------------------------------------------------
...
from cpython cimport PyObject, ref
from cpython.pycapsule cimport *
from libc cimport errno
from libc.stdint cimport *
from libc.stdlib cimport malloc, realloc, free
IF BUILD_DOC:
^
------------------------------------------------------------
rados.pyx:21:3: Compile-time name 'BUILD_DOC' not defined
running build
running build_ext
cythoning rbd.pyx to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/pyrex/rbd.c
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/pyrex
running install
running install_lib
running install_egg_info
running egg_info
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info
writing /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info/PKG-INFO
writing dependency_links to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info/dependency_links.txt
writing top-level names to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info/top_level.txt
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info/SOURCES.txt'
reading manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info/SOURCES.txt'
Copying /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rbd/rbd.egg-info to /usr/local/lib64/python3.6/site-packages/rbd-2.0.0-py3.6.egg-info
running install_scripts
writing list of installed files to '/dev/null'
Error compiling Cython file:
------------------------------------------------------------
...
from datetime import datetime
import errno
from itertools import chain
import time
IF BUILD_DOC:
^
------------------------------------------------------------
rbd.pyx:36:3: Compile-time name 'BUILD_DOC' not defined
Error compiling Cython file:
------------------------------------------------------------
...
return exception_map[ret](msg, errno=ret)
else:
return OSError(msg, errno=ret)
IF BUILD_DOC:
^
------------------------------------------------------------
rbd.pyx:361:3: Compile-time name 'BUILD_DOC' not defined
running build
running build_ext
cythoning cephfs.pyx to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/pyrex/cephfs.c
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/pyrex
running install
running install_lib
running install_egg_info
running egg_info
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info
writing /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info/PKG-INFO
writing dependency_links to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info/dependency_links.txt
writing top-level names to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info/top_level.txt
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info/SOURCES.txt'
reading manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info/SOURCES.txt'
Copying /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/cephfs/cephfs.egg-info to /usr/local/lib64/python3.6/site-packages/cephfs-2.0.0-py3.6.egg-info
running install_scripts
writing list of installed files to '/dev/null'
Error compiling Cython file:
------------------------------------------------------------
...
from cpython cimport PyObject, ref, exc
from libc.stdint cimport *
from libc.stdlib cimport malloc, realloc, free
from types cimport *
IF BUILD_DOC:
^
------------------------------------------------------------
cephfs.pyx:10:3: Compile-time name 'BUILD_DOC' not defined
running build
running build_ext
cythoning rgw.pyx to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/pyrex/rgw.c
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/pyrex
running install
running install_lib
running install_egg_info
running egg_info
creating /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info
writing /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info/PKG-INFO
writing dependency_links to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info/dependency_links.txt
writing top-level names to /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info/top_level.txt
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info/SOURCES.txt'
reading manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file '/root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info/SOURCES.txt'
Copying /root/project/stor/ceph/xb/docker/ceph/build/src/pybind/rgw/rgw.egg-info to /usr/local/lib64/python3.6/site-packages/rgw-2.0.0-py3.6.egg-info
running install_scripts
writing list of installed files to '/dev/null'
Error compiling Cython file:
------------------------------------------------------------
...
from cpython cimport PyObject, ref, exc, array
from libc.stdint cimport *
from libc.stdlib cimport malloc, realloc, free
from cstat cimport stat
IF BUILD_DOC:
^
------------------------------------------------------------
rgw.pyx:11:3: Compile-time name 'BUILD_DOC' not defined
-- Installing: /usr/local/lib/python3.6/site-packages/ceph_argparse.py
-- Installing: /usr/local/lib/python3.6/site-packages/ceph_daemon.py
-- Installing: /usr/local/share/ceph/mgr/dashboard
-- Installing: /usr/local/share/ceph/mgr/dashboard/HACKING.rst
-- Installing: /usr/local/share/ceph/mgr/dashboard/tools.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/run-backend-api-tests.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/exceptions.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/tests
-- Installing: /usr/local/share/ceph/mgr/dashboard/module.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/grafana.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/cherrypy_backports.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/security.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/exceptions.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/tools.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/rest_client.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/awsauth.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/__pycache__/settings.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/motd.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/interfaces.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/ttl_cache.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/pluggy.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/motd.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/debug.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/feature_toggles.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/plugin.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__pycache__/interfaces.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/pluggy.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/__init__.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/plugin.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/lru_cache.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/ttl_cache.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/feature_toggles.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/plugins/debug.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/model
-- Installing: /usr/local/share/ceph/mgr/dashboard/model/__init__.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend
-- Installing: /usr/local/share/ceph/mgr/dashboard/ci
-- Installing: /usr/local/share/ceph/mgr/dashboard/ci/cephadm
-- Installing: /usr/local/share/ceph/mgr/dashboard/ci/cephadm/start-cluster.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/ci/cephadm/run-cephadm-e2e-tests.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/ci/cephadm/bootstrap-cluster.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/ci/cephadm/ceph_cluster.yml
-- Installing: /usr/local/share/ceph/mgr/dashboard/ci/check_grafana_dashboards.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/run-backend-api-request.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/awsauth.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/settings.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/run-frontend-e2e-tests.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/grafana.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/openapi.yaml
-- Installing: /usr/local/share/ceph/mgr/dashboard/services
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/cephfs.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/ceph_service.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/tcmu_service.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/osd.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/sso.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/rbd.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/orchestrator.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/ceph_service.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/sso.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/progress.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/rbd.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/cephfs.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/tcmu_service.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/rgw_client.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/access_control.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/exception.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/osd.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/auth.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/iscsi_client.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/iscsi_cli.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/iscsi_config.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/_paginate.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__pycache__/cluster.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/iscsi_config.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/auth.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/access_control.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/rgw_client.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/iscsi_client.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/exception.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/progress.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/__init__.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/cluster.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/iscsi_cli.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/orchestrator.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/services/_paginate.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/run-frontend-unittests.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/cherrypy_backports.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/rest_client.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/api
-- Installing: /usr/local/share/ceph/mgr/dashboard/api/__pycache__
-- Installing: /usr/local/share/ceph/mgr/dashboard/api/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/api/__pycache__/doc.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/api/__init__.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/api/doc.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/__init__.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/README.rst
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/requests-2.28.2-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pyfakefs-4.5.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/tomli-2.0.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pip-23.0.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/astroid-2.5-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/docutils-0.19-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/chardet-5.1.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/xmlsec-1.3.13-cp310-cp310-linux_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pyflakes-2.3.1-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/isort-5.5.3-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pyrsistent-0.19.3-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/jsonpatch-1.32-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/repoze.lru-0.7-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/jaraco.functools-3.6.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pytest_instafail-0.4.2-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/flake8-3.9.0-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pyproject_api-1.5.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/exceptiongroup-1.1.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/wcwidth-0.2.6-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/lxml-4.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/PyJWT-2.6.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pytest_cov-4.0.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/colorama-0.4.6-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/ceph-1.0.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/lazy_object_proxy-1.9.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/toml-0.10.2-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/natsort-8.3.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/md5
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/python3_saml-1.15.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/CherryPy-13.1.0-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/autopep8-1.5.7-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/wheel-0.40.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/idna-3.4-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/tempora-5.2.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/distlib-0.3.6-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pytz-2023.2-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pluggy-1.0.0-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/platformdirs-3.2.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/cachetools-5.3.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/tox-4.4.8-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/setuptools-67.6.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/iniconfig-2.0.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/filelock-3.10.7-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/jsonschema-4.16.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/certifi-2022.12.7-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/Routes-2.5.1-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/urllib3-1.26.15-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/mccabe-0.6.1-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/rstcheck-3.3.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/attrs-22.2.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pyOpenSSL-23.1.1-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pylint-2.6.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/virtualenv-20.21.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/wrapt-1.12.1-cp310-cp310-linux_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/flake8_colors-0.1.6-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/isodate-0.6.1-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/more_itertools-8.14.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/packaging-23.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/six-1.16.0-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pycparser-2.21-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pytest-7.2.2-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/coverage-7.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/cryptography-40.0.1-cp36-abi3-manylinux_2_28_x86_64.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/jsonpointer-2.3-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/cheroot-9.0.0-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/portend-3.1.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/pycodestyle-2.7.0-py2.py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/wheelhouse/prettytable-3.6.0-py3-none-any.whl
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/cephfs.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_rest_controller.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_permissions.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_ui_router.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/osd.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/monitor.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/rbd.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/host.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/grafana.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/orchestrator.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/summary.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_permissions.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/iscsi.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/rbd.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/telemetry.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/cephfs.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_crud.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/docs.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_version.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/health.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/mgr_modules.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/daemon.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/perf_counters.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_task.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/service.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/logs.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_endpoint.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/home.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_ui_router.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/osd.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/auth.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_auth.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_api_router.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/frontend_logging.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/nfs.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_helpers.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/feedback.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_router.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/cluster_configuration.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/saml2.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/crush_rule.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/rgw.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_rest_controller.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/user.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/rbd_mirroring.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_base_controller.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/task.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/monitor.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/erasure_code_profile.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/role.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/cluster.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/ceph_users.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/prometheus.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/settings.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/_docs.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__pycache__/pool.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/rbd_mirroring.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/crush_rule.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/nfs.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_docs.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/telemetry.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/rgw.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/logs.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/host.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/auth.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_task.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_helpers.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/settings.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/docs.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_router.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/frontend_logging.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/daemon.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_base_controller.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/prometheus.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/summary.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/task.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/grafana.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/cluster_configuration.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/perf_counters.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/erasure_code_profile.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_auth.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/home.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/__init__.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/user.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_crud.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/saml2.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/pool.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/mgr_modules.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/ceph_users.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/feedback.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_api_router.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/iscsi.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/cluster.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_version.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/role.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/service.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/health.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/orchestrator.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_endpoint.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/controllers/_paginate.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/security.py
-- Installing: /usr/local/share/ceph/mgr/dashboard/run-backend-rook-api-request.sh
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/polyfills.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/scripts.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/src_app_ceph_rgw_rgw_module_ts.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/default-src_app_ceph_block_block_module_ts.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/scripts.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/src_app_ceph_pool_pool_module_ts.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/forkawesome-webfont.eot
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/styles.css.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/default-src_app_ceph_block_block_module_ts.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/favicon.ico
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/ceph_background.gif
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/index.html
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/polyfills.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/vendor.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/forkawesome-webfont.woff
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/runtime.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/forkawesome-webfont.ttf
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/runtime.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/vendor.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/forkawesome-webfont.woff2
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/src_app_ceph_pool_pool_module_ts.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/src_app_ceph_rgw_rgw_module_ts.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets/loading.gif
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets/ceph_background.gif
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets/logo-mini.png
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets/Ceph_Logo.svg
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets/Ceph_Ceph_Logo_with_text_red_white.svg
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets/Ceph_Ceph_Logo_with_text_white.svg
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/assets/prometheus_logo.svg
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/main.js.map
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/forkawesome-webfont.svg
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/Ceph_Logo.svg
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/styles.css
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/prometheus_logo.svg
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/dist/en-US/main.js
-- Installing: /usr/local/share/ceph/mgr/dashboard/frontend/package.json
-- Installing: /usr/local/share/ceph/mgr/rook
-- Installing: /usr/local/share/ceph/mgr/rook/tests
-- Installing: /usr/local/share/ceph/mgr/rook/rook_cluster.py
-- Installing: /usr/local/share/ceph/mgr/rook/module.py
-- Installing: /usr/local/share/ceph/mgr/rook/generate_rook_ceph_client.sh
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephobjectstore.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephblockpool.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephobjectzone.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/objectbucketclaim.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/volumereplication.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephobjectstoreuser.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephnfs.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephfilesystem.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephobjectrealm.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/objectbucket.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/__init__.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/volume.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephcluster.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephfilesystemmirror.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/volumereplicationclass.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephclient.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephobjectzonegroup.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/ceph/cephrbdmirror.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/__init__.py
-- Installing: /usr/local/share/ceph/mgr/rook/rook_client/_helper.py
-- Installing: /usr/local/share/ceph/mgr/rook/__init__.py
-- Installing: /usr/local/share/ceph/mgr/alerts
-- Installing: /usr/local/share/ceph/mgr/alerts/module.py
-- Installing: /usr/local/share/ceph/mgr/alerts/__pycache__
-- Installing: /usr/local/share/ceph/mgr/alerts/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/alerts/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/alerts/__init__.py
-- Installing: /usr/local/share/ceph/mgr/balancer
-- Installing: /usr/local/share/ceph/mgr/balancer/module.py
-- Installing: /usr/local/share/ceph/mgr/balancer/__pycache__
-- Installing: /usr/local/share/ceph/mgr/balancer/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/balancer/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/balancer/__init__.py
-- Installing: /usr/local/share/ceph/mgr/cephadm
-- Installing: /usr/local/share/ceph/mgr/cephadm/ssh.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/HACKING.rst
-- Installing: /usr/local/share/ceph/mgr/cephadm/configchecks.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/service_discovery.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/tests
-- Installing: /usr/local/share/ceph/mgr/cephadm/module.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/agent.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/autotune.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/migrations.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/utils.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/upgrade.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/service_discovery.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/registry.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/template.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/tuned_profiles.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/ssl_cert_utils.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/schedule.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/serve.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/configchecks.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/offline_watcher.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/ssh.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/http_server.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/__pycache__/inventory.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/ceph.repo
-- Installing: /usr/local/share/ceph/mgr/cephadm/agent.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/inventory.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/utils.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/upgrade.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/vagrant.config.example.json
-- Installing: /usr/local/share/ceph/mgr/cephadm/template.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/offline_watcher.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/osd.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/iscsi.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/ingress.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/monitoring.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/cephadmservice.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/jaeger.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/osd.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/nfs.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__pycache__/container.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/nfs.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/jaeger.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/cephadmservice.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/monitoring.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/container.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/__init__.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/ingress.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/services/iscsi.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/Vagrantfile
-- Installing: /usr/local/share/ceph/mgr/cephadm/__init__.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/serve.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/migrations.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/registry.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/blink_device_light_cmd.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/ingress
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/ingress/keepalived.conf.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/ingress/haproxy.cfg.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/node-exporter
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/node-exporter/web.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/prometheus
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/prometheus/prometheus.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/prometheus/web.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/nfs
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/nfs/ganesha.conf.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/iscsi
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/iscsi/iscsi-gateway.cfg.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/grafana
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/grafana/ceph-dashboard.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/grafana/grafana.ini.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/promtail.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/loki.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/alertmanager
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/alertmanager/alertmanager.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/templates/services/alertmanager/web.yml.j2
-- Installing: /usr/local/share/ceph/mgr/cephadm/schedule.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/tuned_profiles.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/autotune.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/http_server.py
-- Installing: /usr/local/share/ceph/mgr/cephadm/ssl_cert_utils.py
-- Installing: /usr/local/share/ceph/mgr/crash
-- Installing: /usr/local/share/ceph/mgr/crash/module.py
-- Installing: /usr/local/share/ceph/mgr/crash/__pycache__
-- Installing: /usr/local/share/ceph/mgr/crash/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/crash/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/crash/__init__.py
-- Installing: /usr/local/share/ceph/mgr/devicehealth
-- Installing: /usr/local/share/ceph/mgr/devicehealth/module.py
-- Installing: /usr/local/share/ceph/mgr/devicehealth/__pycache__
-- Installing: /usr/local/share/ceph/mgr/devicehealth/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/devicehealth/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/devicehealth/__init__.py
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/redhat
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/redhat/seagate_predictor.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/redhat/hgst_scaler.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/redhat/hgst_predictor.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/redhat/seagate_scaler.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/redhat/config.json
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_223.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_219.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_120.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_14.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_174.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_36.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_124.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_115.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_208.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_82.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_221.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_230.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_57.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_141.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_88.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_109.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_105.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_210.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_239.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_125.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_114.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_229.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_131.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_6.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_118.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_59.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_3.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_67.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_71.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_72.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_235.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_128.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_138.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_195.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_206.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_201.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_222.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_27.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_213.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_1.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_123.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_169.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_204.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_44.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_16.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_18.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_78.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_134.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_227.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_61.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_212.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_104.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_243.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_62.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_10.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_97.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_186.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_69.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_236.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_225.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/config.json
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_185.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_234.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_151.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_50.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_12.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_145.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_112.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_168.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_33.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_85.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_161.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_182.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_93.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_79.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/models/prophetstor/svm_119.pkl
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/module.py
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/__pycache__
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/__pycache__/predictor.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/predictor.py
-- Installing: /usr/local/share/ceph/mgr/diskprediction_local/__init__.py
-- Installing: /usr/local/share/ceph/mgr/influx
-- Installing: /usr/local/share/ceph/mgr/influx/module.py
-- Installing: /usr/local/share/ceph/mgr/influx/__pycache__
-- Installing: /usr/local/share/ceph/mgr/influx/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/influx/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/influx/__init__.py
-- Installing: /usr/local/share/ceph/mgr/insights
-- Installing: /usr/local/share/ceph/mgr/insights/tests
-- Installing: /usr/local/share/ceph/mgr/insights/module.py
-- Installing: /usr/local/share/ceph/mgr/insights/__pycache__
-- Installing: /usr/local/share/ceph/mgr/insights/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/insights/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/insights/__pycache__/health.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/insights/__init__.py
-- Installing: /usr/local/share/ceph/mgr/insights/health.py
-- Installing: /usr/local/share/ceph/mgr/iostat
-- Installing: /usr/local/share/ceph/mgr/iostat/module.py
-- Installing: /usr/local/share/ceph/mgr/iostat/__pycache__
-- Installing: /usr/local/share/ceph/mgr/iostat/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/iostat/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/iostat/__init__.py
-- Installing: /usr/local/share/ceph/mgr/k8sevents
-- Installing: /usr/local/share/ceph/mgr/k8sevents/README.md
-- Installing: /usr/local/share/ceph/mgr/k8sevents/module.py
-- Installing: /usr/local/share/ceph/mgr/k8sevents/__pycache__
-- Installing: /usr/local/share/ceph/mgr/k8sevents/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/k8sevents/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/k8sevents/__init__.py
-- Installing: /usr/local/share/ceph/mgr/k8sevents/rbac_sample.yaml
-- Installing: /usr/local/share/ceph/mgr/localpool
-- Installing: /usr/local/share/ceph/mgr/localpool/module.py
-- Installing: /usr/local/share/ceph/mgr/localpool/__pycache__
-- Installing: /usr/local/share/ceph/mgr/localpool/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/localpool/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/localpool/__init__.py
-- Installing: /usr/local/share/ceph/mgr/mds_autoscaler
-- Installing: /usr/local/share/ceph/mgr/mds_autoscaler/tests
-- Installing: /usr/local/share/ceph/mgr/mds_autoscaler/module.py
-- Installing: /usr/local/share/ceph/mgr/mds_autoscaler/__pycache__
-- Installing: /usr/local/share/ceph/mgr/mds_autoscaler/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mds_autoscaler/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mds_autoscaler/__init__.py
-- Installing: /usr/local/share/ceph/mgr/mirroring
-- Installing: /usr/local/share/ceph/mgr/mirroring/module.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/__pycache__
-- Installing: /usr/local/share/ceph/mgr/mirroring/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/__init__.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/blocklist.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__pycache__
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__pycache__/blocklist.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__pycache__/notify.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__pycache__/utils.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__pycache__/exception.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__pycache__/snapshot_mirror.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/utils.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/exception.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/notify.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/__init__.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/snapshot_mirror.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__pycache__
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__pycache__/load.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__pycache__/state_transition.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__pycache__/policy.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__pycache__/update.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__pycache__/create.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/create.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/state_transition.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/load.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/__init__.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/policy.py
-- Installing: /usr/local/share/ceph/mgr/mirroring/fs/dir_map/update.py
-- Installing: /usr/local/share/ceph/mgr/nfs
-- Installing: /usr/local/share/ceph/mgr/nfs/tests
-- Installing: /usr/local/share/ceph/mgr/nfs/module.py
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__/utils.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__/ganesha_conf.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__/exception.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__/export.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/nfs/__pycache__/cluster.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/nfs/ganesha_conf.py
-- Installing: /usr/local/share/ceph/mgr/nfs/export.py
-- Installing: /usr/local/share/ceph/mgr/nfs/utils.py
-- Installing: /usr/local/share/ceph/mgr/nfs/exception.py
-- Installing: /usr/local/share/ceph/mgr/nfs/__init__.py
-- Installing: /usr/local/share/ceph/mgr/nfs/cluster.py
-- Installing: /usr/local/share/ceph/mgr/orchestrator
-- Installing: /usr/local/share/ceph/mgr/orchestrator/README.md
-- Installing: /usr/local/share/ceph/mgr/orchestrator/tests
-- Installing: /usr/local/share/ceph/mgr/orchestrator/module.py
-- Installing: /usr/local/share/ceph/mgr/orchestrator/__pycache__
-- Installing: /usr/local/share/ceph/mgr/orchestrator/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/orchestrator/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/orchestrator/__pycache__/_interface.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/orchestrator/_interface.py
-- Installing: /usr/local/share/ceph/mgr/orchestrator/__init__.py
-- Installing: /usr/local/share/ceph/mgr/osd_perf_query
-- Installing: /usr/local/share/ceph/mgr/osd_perf_query/module.py
-- Installing: /usr/local/share/ceph/mgr/osd_perf_query/__pycache__
-- Installing: /usr/local/share/ceph/mgr/osd_perf_query/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/osd_perf_query/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/osd_perf_query/__init__.py
-- Installing: /usr/local/share/ceph/mgr/osd_support
-- Installing: /usr/local/share/ceph/mgr/osd_support/module.py
-- Installing: /usr/local/share/ceph/mgr/osd_support/__pycache__
-- Installing: /usr/local/share/ceph/mgr/osd_support/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/osd_support/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/osd_support/__init__.py
-- Installing: /usr/local/share/ceph/mgr/pg_autoscaler
-- Installing: /usr/local/share/ceph/mgr/pg_autoscaler/tests
-- Installing: /usr/local/share/ceph/mgr/pg_autoscaler/module.py
-- Installing: /usr/local/share/ceph/mgr/pg_autoscaler/__pycache__
-- Installing: /usr/local/share/ceph/mgr/pg_autoscaler/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/pg_autoscaler/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/pg_autoscaler/__init__.py
-- Installing: /usr/local/share/ceph/mgr/progress
-- Installing: /usr/local/share/ceph/mgr/progress/module.py
-- Installing: /usr/local/share/ceph/mgr/progress/__pycache__
-- Installing: /usr/local/share/ceph/mgr/progress/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/progress/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/progress/test_progress.py
-- Installing: /usr/local/share/ceph/mgr/progress/__init__.py
-- Installing: /usr/local/share/ceph/mgr/prometheus
-- Installing: /usr/local/share/ceph/mgr/prometheus/test_module.py
-- Installing: /usr/local/share/ceph/mgr/prometheus/module.py
-- Installing: /usr/local/share/ceph/mgr/prometheus/__pycache__
-- Installing: /usr/local/share/ceph/mgr/prometheus/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/prometheus/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/prometheus/__init__.py
-- Installing: /usr/local/share/ceph/mgr/rbd_support
-- Installing: /usr/local/share/ceph/mgr/rbd_support/module.py
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/module.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/__init__.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/mirror_snapshot_schedule.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/perf.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/common.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/schedule.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/task.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/__pycache__/trash_purge_schedule.cpython-310.pyc
-- Installing: /usr/local/share/ceph/mgr/rbd_support/common.py
-- Installing: /usr/local/share/ceph/mgr/rbd_support/task.py