forked from Katello/katello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rubygem-katello.spec
5434 lines (5376 loc) · 292 KB
/
rubygem-katello.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
%{?scl:%scl_package rubygem-%{gem_name}}
%{!?scl:%global pkg_name %{name}}
%global gem_name katello
%global foreman_dir /usr/share/foreman
%global foreman_bundlerd_dir %{foreman_dir}/bundler.d
%define rubyabi 1.9.1
%if "%{?scl}" == "ruby193"
%global scl_ruby /usr/bin/ruby193-ruby
%global scl_rake /usr/bin/ruby193-rake
### TODO temp disabled for SCL
%global nodoc 1
%else
%global scl_ruby /usr/bin/ruby
%global scl_rake /usr/bin/rake
%endif
Summary: Katello
Name: %{?scl_prefix}rubygem-%{gem_name}
Version: 2.4.0
Release: 2%{dist}
Group: Development/Ruby
License: Distributable
URL: http://www.katello.org
Source0: http://rubygems.org/downloads/%{gem_name}-%{version}.gem
%if 0%{?fedora} > 18
Requires: %{?scl_prefix}ruby(release)
%else
Requires: %{?scl_prefix}ruby(abi) >= %{rubyabi}
%endif
Requires: %{?scl_prefix}rubygems
# service-wait dependency
Requires: wget
Requires: curl
%if 0%{?rhel} == 6
Requires: redhat-logos >= 60.0.14
%endif
%if 0%{?fedora} > 18 || 0%{?rhel} > 6
Requires(post): candlepin-tomcat
%else
Requires(post): candlepin-tomcat6
%endif
Requires(post): chkconfig
Requires(postun): initscripts coreutils sed
Requires(pre): shadow-utils
Requires(preun): chkconfig
Requires(preun): initscripts
#Pulp Requirements
Requires: pulp-katello
Requires: pulp-nodes-parent
Requires: pulp-docker-plugins
Requires: pulp-puppet-plugins
Requires: pulp-rpm-plugins
Requires: pulp-puppet-tools
Requires: pulp-selinux
Requires: pulp-server
Requires: mongodb >= 2.4
Requires: mongodb-server >= 2.4
Requires: cyrus-sasl-plain
Requires: python-crane
Requires: qpid-cpp-client-devel
Requires: qpid-dispatch-router
Requires: katello-selinux
Requires: candlepin-selinux
Requires: createrepo >= 0.9.9-18%{?dist}
Requires: elasticsearch
Requires: foreman >= 1.9.0
Requires: java-openjdk >= 1:1.7.0
Requires: java-openjdk < 1:1.8.0.45
# Still Requires katello-common which clashes with
# new build - will re-enable after fixing
#Requires: katello-selinux
Requires: libvirt-devel
Requires: lsof
Requires: postgresql
Requires: postgresql-server
Requires: v8
Requires: %{?scl_prefix}rubygem-angular-rails-templates >= 0.0.4
Requires: %{?scl_prefix}rubygem-bastion >= 2.0.0
Requires: %{?scl_prefix}rubygem-bastion < 3.0.0
Requires: %{?scl_prefix}rubygem-rails
Requires: %{?scl_prefix}rubygem-json
Requires: %{?scl_prefix}rubygem-oauth
Requires: %{?scl_prefix}rubygem-rest-client
Requires: %{?scl_prefix}rubygem-rabl
Requires: %{?scl_prefix}rubygem-tire => 0.6.2
Requires: %{?scl_prefix}rubygem-tire < 0.7
Requires: %{?scl_prefix}rubygem-hooks
Requires: %{?scl_prefix}rubygem-foreman_docker >= 0.2.0
Requires: %{?scl_prefix}rubygem-foreman-tasks >= 0.7.1
Requires: %{?scl_prefix}rubygem-foreman-tasks < 0.8.0
Requires: %{?scl_prefix}rubygem-justified
Requires: %{?scl_prefix}rubygem-gettext_i18n_rails
Requires: %{?scl_prefix}rubygem-i18n_data >= 0.2.6
Requires: %{?scl_prefix}rubygem-apipie-rails >= 0.1.1
Requires: %{?scl_prefix}rubygem-runcible >= 1.3.0
Requires: %{?scl_prefix}rubygem-anemone
Requires: %{?scl_prefix}rubygem-less-rails
Requires: %{?scl_prefix}rubygem-haml-rails
Requires: %{?scl_prefix}rubygem-jquery-ui-rails
Requires: %{?scl_prefix}rubygem-deface < 1.0.0
Requires: %{?scl_prefix}rubygem-strong_parameters
Requires: %{?scl_prefix}rubygem-qpid_messaging >= 0.30.0
Requires: %{?scl_prefix}rubygem-qpid_messaging < 0.31.0
BuildRequires: foreman >= 1.9.0
BuildRequires: foreman-assets >= 1.9.0
BuildRequires: %{?scl_prefix}rubygem-angular-rails-templates >= 0.0.4
BuildRequires: %{?scl_prefix}rubygem-bastion >= 2.0.0
BuildRequires: %{?scl_prefix}rubygem-bastion < 3.0.0
BuildRequires: %{?scl_prefix}rubygem-sqlite3
BuildRequires: %{?scl_prefix}rubygem-tire => 0.6.2
BuildRequires: %{?scl_prefix}rubygem-tire < 0.7
BuildRequires: %{?scl_prefix}rubygem-hooks
BuildRequires: %{?scl_prefix}rubygem-foreman_docker >= 0.2.0
BuildRequires: %{?scl_prefix}rubygem-foreman-tasks >= 0.7.1
BuildRequires: %{?scl_prefix}rubygem-foreman-tasks < 0.8.0
BuildRequires: %{?scl_prefix}rubygem-justified
BuildRequires: %{?scl_prefix}rubygem-gettext_i18n_rails
BuildRequires: %{?scl_prefix}rubygem-i18n_data >= 0.2.6
BuildRequires: %{?scl_prefix}rubygem-apipie-rails >= 0.1.1
BuildRequires: %{?scl_prefix}rubygem-runcible >= 1.3.0
BuildRequires: %{?scl_prefix}rubygem-anemone
BuildRequires: %{?scl_prefix}rubygem-less-rails
BuildRequires: %{?scl_prefix}rubygem-haml-rails
BuildRequires: %{?scl_prefix}rubygem-jquery-ui-rails
BuildRequires: %{?scl_prefix}rubygem-deface < 1.0.0
BuildRequires: %{?scl_prefix}rubygem(uglifier) >= 1.0.3
BuildRequires: %{?scl_prefix}rubygem-strong_parameters
BuildRequires: %{?scl_prefix}rubygem-qpid_messaging >= 0.30.0
BuildRequires: %{?scl_prefix}rubygem-qpid_messaging < 0.31.0
BuildRequires: %{?scl_prefix}rubygems-devel
BuildRequires: %{?scl_prefix}rubygems
%if 0%{?fedora} > 18
BuildRequires: %{?scl_prefix}ruby(release)
%else
BuildRequires: %{?scl_prefix}ruby(abi) >= %{rubyabi}
%endif
BuildArch: noarch
Provides: %{?scl_prefix}rubygem(katello) = %{version}
%description
Katello
%package doc
BuildArch: noarch
Requires: %{?scl_prefix}%{pkg_name} = %{version}-%{release}
Summary: Documentation for rubygem-%{gem_name}
%description doc
This package contains documentation for rubygem-%{gem_name}.
%prep
%setup -n %{pkg_name}-%{version} -q -c -T
mkdir -p .%{gem_dir}
%{?scl:scl enable %{scl} "}
gem install --local --install-dir .%{gem_dir} --force %{SOURCE0}
%{?scl:"}
%build
%install
mkdir -p %{buildroot}%{gem_dir}
cp -a .%{gem_dir}/* \
%{buildroot}%{gem_dir}/
mkdir -p ./usr/share
cp -r %{foreman_dir} ./usr/share || echo 0
mkdir -p ./%{_localstatedir}/lib/foreman
cp -r /var/lib/foreman/db ./%{_localstatedir}/lib/foreman || echo 0
unlink ./usr/share/foreman/db
ln -sv `pwd`/%{_localstatedir}/lib/foreman/db ./usr/share/foreman/db
cp -r /var/lib/foreman/public ./%{_localstatedir}/lib/foreman || echo 0
unlink ./usr/share/foreman/public
ln -sv `pwd`/%{_localstatedir}/lib/foreman/public ./usr/share/foreman/public
unlink ./usr/share/foreman/config/database.yml
unlink ./usr/share/foreman/config/settings.yaml
unlink ./usr/share/foreman/config/initializers/encryption_key.rb
cp /etc/foreman/settings.yaml ./usr/share/foreman/config
cat <<DBPROD >> ./usr/share/foreman/config/database.yml
production:
adapter: sqlite3
database: db/production.sqlite3
pool: 5
timeout: 5000
development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
DBPROD
pushd ./usr/share/foreman
sed -i 's/:locations_enabled: false/:locations_enabled: true/' config/settings.yaml
sed -i 's/:organizations_enabled: false/:organizations_enabled: true/' config/settings.yaml
export GEM_PATH=%{gem_dir}:%{buildroot}%{gem_dir}
cat <<GEMFILE > ./bundler.d/%{gem_name}.rb
group :katello do
gem '%{gem_name}'
end
GEMFILE
unlink tmp
cp %{buildroot}%{gem_instdir}/config/katello_defaults.yml %{buildroot}%{gem_instdir}/config/katello.yml
export BUNDLER_EXT_NOSTRICT=1
export BUNDLER_EXT_GROUPS="default assets katello"
%{scl_rake} security:generate_encryption_key
%{scl_rake} assets:precompile:katello RAILS_ENV=production --trace
%{scl_rake} db:migrate RAILS_ENV=development --trace
%{scl_rake} plugin:apipie:cache['katello'] RAILS_ENV=development cache_part=resources OUT=%{buildroot}%{gem_instdir}/public/apipie-cache/plugin/katello --trace
popd
rm -rf ./usr
rm %{buildroot}%{gem_instdir}/config/katello.yml
mkdir -p %{buildroot}%{foreman_bundlerd_dir}
cat <<GEMFILE > %{buildroot}%{foreman_bundlerd_dir}/%{gem_name}.rb
group :katello do
gem '%{gem_name}'
end
GEMFILE
mkdir -p %{buildroot}%{foreman_dir}/public/assets
mkdir -p %{buildroot}%{foreman_dir}/public/apipie-cache/plugin
ln -s %{gem_instdir}/public/assets/katello %{buildroot}%{foreman_dir}/public/assets/katello
ln -s %{gem_instdir}/public/assets/bastion_katello %{buildroot}%{foreman_dir}/public/assets/bastion_katello
ln -s %{gem_instdir}/public/apipie-cache/plugin/katello %{buildroot}%{foreman_dir}/public/apipie-cache/plugin/katello
%post
cp -r %{foreman_dir}/public/apipie-cache/plugin/katello/* %{foreman_dir}/public/apipie-cache/
chown -R foreman.foreman %{foreman_dir}/public/apipie-cache
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root)
%{gem_instdir}/
%exclude %{gem_cache}
%{gem_spec}
%{foreman_bundlerd_dir}/%{gem_name}.rb
%{foreman_dir}/public/assets/katello
%{foreman_dir}/public/assets/bastion_katello
%{foreman_dir}/public/apipie-cache/plugin/katello
%files doc
%{gem_dir}/doc/%{gem_name}-%{version}
%changelog
* Mon Jul 06 2015 Stephen Benjamin <[email protected]> 2.4.0-2
- Version bump to 2.4.0 ([email protected])
* Mon Jul 06 2015 Stephen Benjamin <[email protected]>
- Version bump to 2.4.0 ([email protected])
* Mon Jul 06 2015 Stephen Benjamin <[email protected]> 2.4.0-1
- Update to Katello 2.4.0
* Mon Jul 06 2015 Stephen Benjamin <[email protected]> 2.3.0-2
- Merge pull request #5318 from jlsherrill/10901 ([email protected])
- Merge pull request #5330 from iNecas/limit-foreman-tasks ([email protected])
- adding myself to contrib ([email protected])
- Refs #10962 - limit foreman tasks in rpm specs to < 0.7.0 ([email protected])
- Merge pull request #5312 from iNecas/issue/10830 ([email protected])
- Merge pull request #5325 from komidore64/bz1202050 ([email protected])
- Fixes #10830 - Humanized state description for Pulp and Candlepin async
actions ([email protected])
- Merge pull request #5307 from johnpmitsch/errata_search
- fixes #10934 - per-page/page options for puppet-module list, BZ1202050
- Merge pull request #5321 from thomasmckay/10903 ([email protected])
- Merge pull request #5294 from jlsherrill/scoped_repo ([email protected])
- Merge pull request #5316 from jlsherrill/10725-refs ([email protected])
- Fixes #10904: fix errata CH selection, BZ 1233901. ([email protected])
- fixes #10903 - remove reference to non-existent methods
- Merge pull request #5308 from waldenraines/10705 ([email protected])
- Fixes #10705: filter out non-installable Systems BZ1228292.
- fixes #10901 - skip all errors on sync tasks ([email protected])
- Merge pull request #5314 from cfouant/host-content ([email protected])
- Merge pull request #5317 from jlsherrill/10886 ([email protected])
- fixes #8690 - converting repository to scoped search ([email protected])
- fixes #10886 - adding more conditions for readable repos
- Merge pull request #5220 from ehelms/fixes-8693 ([email protected])
- Merge pull request #5255 from jlsherrill/puppet_env ([email protected])
- Fixes #8693: Convert content view puppet module to scoped search.
- refs #10725 - run ping check as anonymous admin ([email protected])
- fixes #10459,#10435 - do not create a puppet env for cvs with no modules
- Fixes #10824 - Refactoring errata index to show available errata using a url
parameter. This is part of the conversion to scoped search for the
filter_rules. By using a url parameter, the available errata is shown using
the index of errata, which will make scoped search easier to implement.
- fixes #10871 - Loads product content tab on content host, BZ1230782
- Merge pull request #5309 from cfouant/pulp-info ([email protected])
- Fixes #10857: Ensure DestroyMedium filename and action name are the same.
- Merge pull request #5305 from waldenraines/10827 ([email protected])
- Fixes #10827: replace usages of deprecated bst-infinite-scroll.
- Merge pull request #5303 from daviddavis/temp/20150615142141
- fixes #10536 - changes 404 exceptions from error to info, BZ1136081
- Merge pull request #5287 from ehelms/fixes-10732 ([email protected])
- Fixes #10822 - Don't clean up env content during CV remove
- Merge pull request #5247 from ehelms/fixes-10601 ([email protected])
- Merge pull request #5302 from jlsherrill/10820 ([email protected])
- fixes #10820 - collect tasks dump with foreman-debug ([email protected])
- Merge pull request #5301 from ehelms/fixes-10810 ([email protected])
- Merge pull request #5300 from ehelms/fixes-10809 ([email protected])
- refs #7162 - fixing capsule sync timeout ([email protected])
- Merge pull request #5283 from stbenjam/10735 ([email protected])
- Fixes #10732: Remove attributes from user and use admin for remote calls.
- fixes #10735 - remove default and custom info ([email protected])
- Merge pull request #5295 from waldenraines/10798 ([email protected])
- Fixes #10809: Remove unused doc/ directory. ([email protected])
- Fixes #10810: Remove unused public/ directory. ([email protected])
- Merge pull request #5297 from daviddavis/temp/20150612145051
- Fixes #10804 - Fixing full_path for docker repos BZ1230777
- Fixes #10798: fix overlap of CVV repository selector BZ 1228390.
- Merge pull request #5293 from johnpmitsch/repo_index_bug
- Merge pull request #5292 from waldenraines/10786 ([email protected])
- Fixes #10790 - Package groups aren't listed in content view package group
filter rules ([email protected])
- Fixes #10786: remove content dashboard settings button, BZ 1225949.
- Merge pull request #5291 from ares/fix/7096 ([email protected])
- Merge pull request #5289 from waldenraines/10775 ([email protected])
- Merge pull request #5279 from jlsherrill/10725 ([email protected])
- Refs #7096 - rename the model in seeds ([email protected])
- Merge pull request #5284 from ehelms/fixes-10734 ([email protected])
- fixes #10725 - adding backend check prior during plan of some actions
- Fixes #10775: only show one message for CVV page BZ 1230408.
- Fixes #10774: fix content host errata results BZ 1228316. ([email protected])
- Merge pull request #5282 from ehelms/fixes-10733 ([email protected])
- Merge pull request #5277 from parthaa/reindex ([email protected])
- Fixes #10724 - Peppier katello:reindex ([email protected])
- Merge pull request #5275 from waldenraines/10640 ([email protected])
- Merge pull request #5265 from steveloranz/BZ1204602 ([email protected])
- Fixes #10640: only show one repo per CVV BZ 1223699. ([email protected])
- Merge pull request #5278 from dustints/timeout_cap_sync ([email protected])
- Merge pull request #5262 from ares/fix/7096 ([email protected])
- Merge pull request #5281 from thomasmckay/10281-repos-2
- Merge pull request #5272 from jlsherrill/org_destroy_2 ([email protected])
- refs #10655 - fixing a couple more issues with org delete
- fixes #8586 - fixing race condition on errata index ([email protected])
- Fixes #7162 - timeout capsule sync task ([email protected])
- Merge pull request #5267 from waldenraines/10681 ([email protected])
- Fixes #10671 - Fix upload on gpg_key BZ1204602 ([email protected])
- fixes #10719 - removed extra unused arg to import_products_from_cp
- fixes #10718 - correctly show repos ([email protected])
- Fixes #10681: show correct installable count BZ 1226997. ([email protected])
- Merge pull request #5271 from parthaa/set-content-fix ([email protected])
- Fixes #10742: Remove legacy User Notice and Notices. ([email protected])
- Merge pull request #5269 from jlsherrill/10690 ([email protected])
- Fixes #10601: Destroy installation media when repository is destroyed.
- Fixes #10697 - Improved CP SetContent add/delete logic ([email protected])
- Merge pull request #5274 from waldenraines/10705 ([email protected])
- Merge pull request #5266 from johnpmitsch/newbug ([email protected])
- Merge pull request #5249 from waldenraines/10617 ([email protected])
- Fixes #10705: fix errata CH installable filter BZ 1228292.
- Fixes #10704: correct text on errata confirm page, BZ 1228281.
- Merge pull request #5253 from ehelms/fixes-10585 ([email protected])
- Fixes #10551 - Add scoped search for content view version by version and
repository ([email protected])
- Fixes #10585: Migrate to custom logging now in Foreman core.
- fixes #10696 - Fixes org creation error from 500 to 422 ([email protected])
- fixes #10690 - fixing possible race condition with creating operatingsystems
- Refs #7096 - Fix migration and tests using old model ([email protected])
- Fixes #10734: Remove unused/legacy search history and search favorites.
- Merge pull request #5264 from stbenjam/10572 ([email protected])
- fixes #10572 - send e-mail to all subscribers ([email protected])
- Merge pull request #5261 from adamruzicka/10622-repository_delete_traceback
- Merge pull request #5256 from waldenraines/10631 ([email protected])
- Merge pull request #5260 from jlsherrill/org_delete ([email protected])
- Fixes #10631: hide errata confirm if no errata IDs BZ 1223963.
- Fixes #10622 - Fixes javascript traceback when removing repositories
- fixes #10669 - Fixes issue with actkey name not updating, BZ1221685
- fixes #10655 - fix organization delete ([email protected])
- Fixes #10733: Remove Katello help tips. ([email protected])
- Merge pull request #5234 from dustints/sync_stat_task ([email protected])
- Merge pull request #5252 from parthaa/fix-protected ([email protected])
- Fixes #10381 - reduce #queries on products page ([email protected])
- Merge pull request #5216 from cfouant/cv-promotion ([email protected])
- Merge pull request #5259 from ehelms/fixes-10593 ([email protected])
- Merge pull request #5246 from thomasmckay/10281-repos
- fixes #10351 - Fixes issue with CVV restrictive promotion sequence in UI,
BZ1169876 ([email protected])
- Fixes #10593: Log message instead of failing when no mail recipients.
- Merge pull request #5241 from jlsherrill/scoped_provider
- Merge pull request #5243 from cfouant/ch-ui ([email protected])
- fixes #10281 - do not display inaccessible red hat repos for enable
- fixes #10537 - Fixes toggle issue when switching between subscription panes
on content host, BZ1207488 ([email protected])
- Merge pull request #5250 from komidore64/bz1223926 ([email protected])
- fixes #10569 - convert products to scoped search ([email protected])
- Merge pull request #5248 from jlsherrill/10614 ([email protected])
- Merge pull request #5244 from Katello/fixes-10588 ([email protected])
- Fixes #10620 - Repos no longer protected by default ([email protected])
- Fixes #10617: don't use scroll on unpaged tables BZ 1223968.
- fixes 10598 - hammer content-host errata list failed, BZ1223926
- fixes #10614 - omit device network option on el5 kickstart
- Merge pull request #5238 from daviddavis/temp/20150520121351
- Merge pull request #5237 from stbenjam/stbenjam-- ([email protected])
- Fixes #10590 : The product help message should not reference a repository
- Fixes #10588: Fix typo that broke listing puppet modules for a version.
- Fixes #10575: add available content to AK products index BZ 1223743.
- fixes #10570 - removing provider elasticsearch ([email protected])
- Merge pull request #5230 from jlsherrill/10523 ([email protected])
- Fixes #9924 - Fixing content view history bug in elasticsearch
- fixes #10428 - katello-service and related scripts shouldn't be symlinks
- Merge pull request #5167 from daviddavis/temp/20150402172023
- Merge pull request #5227 from ehelms/fixes-10498 ([email protected])
- Fixes #10014 - Move version api to scoped search BZ1192162
- Fixes #10498: Content view comparison wasn't showing repositories.
- Merge pull request #5236 from ehelms/fixes-10489 ([email protected])
- Merge pull request #5198 from waldenraines/10308 ([email protected])
- fixes #10489 - adding two timeouts for content tasks ([email protected])
- Fixes #10540: correct product link on errata repo page BZ 1222660.
- Merge pull request #5232 from cfouant/pulp-error ([email protected])
- fixes #10536 - Removes traceback from successful CH registration, BZ1136081
- Fixes #10525: remove unnecessary reference to tipsy, BZ 1222135.
- fixes #10523 - use admin user for facts updating ([email protected])
- Merge pull request #5228 from thomasmckay/10514-unregister-hv
- Merge pull request #5206 from dustints/perfproducts ([email protected])
- fixes #10514 - handle case where content host no longer exists
- Merge pull request #5224 from ehelms/fixes-10488 ([email protected])
- Merge pull request #5226 from jlsherrill/10495 ([email protected])
- fixes #10495 - create custom products with metadata_expire set to 1
- Merge pull request #5222 from daviddavis/temp/20150511191142
- Merge pull request #5223 from thomasmckay/10484-virt-who-user
- Fixes #10488: Ensure ID exists when environment details are loaded.
- Fixes #10381 - reduce #queries on products page ([email protected])
- Merge pull request #5180 from dustints/redmine10152 ([email protected])
- Fixes #10152 - reduce num querys in sys#index ([email protected])
- fixes #10484 - use virt-who rhsm user for hypervisor checkin
- Fixes #10388 - Removing license header from remaining files
- Refs #10388 - Removing license header from js test files
- Refs #10388 - Remove license from javascript non-test files
- Merge pull request #5213 from thomasmckay/10424-content-host-apipie
- Refs #10473 - remove prior option from environment update
- Merge pull request #5219 from ehelms/fixes-10455 ([email protected])
- Fixes #10455: Validate the presence of the composite field as a boolean.
- Merge pull request #5168 from ehelms/fixes-9327 ([email protected])
- Merge pull request #5203 from jlsherrill/8698 ([email protected])
- Merge pull request #5188 from ehelms/fixes-8692 ([email protected])
- Merge pull request #5217 from stbenjam/10428 ([email protected])
- fixes #8698 - migrate content view filters to scoped search
- fixes #10428 - katello-service package should actually have katello-service
- Merge pull request #5212 from stbenjam/10422 ([email protected])
- fixes #10422 - send hash to capsule sync plan as expected
- Fixes #9327: Update to Bastion 1.X and fix for eslint. ([email protected])
- Fixes #8692: Move content views to scoped search. ([email protected])
- Merge pull request #5214 from ehelms/fixes-10426 ([email protected])
- Merge pull request #5158 from xprazak2/cancel-discovery-b5684
- Fixes #10426: Ensure content host exists before updating in migration.
- fixes #10424 - remove required flag from content host update params
- Fixes #10308: prevent ISE on errata content hosts page BZ1216200.
- Merge pull request #5204 from waldenraines/10383 ([email protected])
- Merge pull request #5208 from jlsherrill/10396 ([email protected])
- Refs #10388 - Removing license header from test folder
- Merge pull request #5209 from daviddavis/temp/20150506132732
- Refs #10388 - Removing license header from other app folders
- Merge pull request #5189 from thomasmckay/10225-cp-events
- Merge pull request #5205 from daviddavis/temp/20150505182228
- Refs #10388 - Removing license header from ruby model files
- Refs #10388 - Removing license header from spec, actions, config, lib
- fixes #10396 - display better errors on repo metadata sync fail
- Fixes #10383: change errata issued/updated columns to date, BZ1215756.
- Merge pull request #5195 from ehelms/fixes-10257 ([email protected])
- Fixes #10257: Connect capsule and its content host at the DB level.
- Merge pull request #5201 from stbenjam/10331 ([email protected])
- Merge pull request #5199 from waldenraines/10309 ([email protected])
- Merge pull request #5192 from waldenraines/10227 ([email protected])
- Fixes #10227: remove tipsy to fix tooltip issues, BZ 1213556.
- fixes #10331 - fix assocation from lifecycle environment to hosts
- Refs #10224 - release python-isodate for fedoras ([email protected])
- Merge pull request #5181 from stbenjam/1102878 ([email protected])
- fixes #6781 - provide a way to restart capsule services ([email protected])
- Fixes #10309: prevent ISE on CH bulk actions errata BZ1216195.
- Merge pull request #5190 from jlsherrill/10229 ([email protected])
- Merge pull request #5194 from iNecas/issue/10249-cancel-notice
- Fixes #10249 - treat canceled tasks as errors ([email protected])
- fixes #10229 - centralizing and isolating capsule communication
- Merge pull request #5196 from waldenraines/10258 ([email protected])
- Fixes #10258: hide "published at" section if puppet BZ 1131940.
- Refs #10224 - updating comps for f20, f21 ([email protected])
- fixes #10246 - hypervisors do not have pulp record ([email protected])
- Fixes #5684: cancel repository discovery is now dynflowed
- fixes #10225 - handle candlepin events cleanly ([email protected])
- fixes #10218 - incorrect usage of subscription guest host uuid
- Merge pull request #5182 from thomasmckay/10144-last-checkin
- Merge pull request #4937 from orrabin/8861 ([email protected])
- fixes #9655 - reindex content hosts and ignore warnings
- Fixes #10185: Lock openjdk to less than 1.8.0.45. ([email protected])
- Merge pull request #5148 from thomasmckay/version-description
- fixes #10144 - pass last-checkin time through to candlepin
- Merge pull request #5163 from ehelms/fixes-10006 ([email protected])
- Merge pull request #5179 from ehelms/fixes-10149 ([email protected])
- Merge pull request #5176 from ehelms/fixes-10132 ([email protected])
- Merge pull request #5174 from ehelms/fixes-9867 ([email protected])
- Fixes #10149: Distribute katello-client-repos RPM in client repos.
- Fixes #9867: Update katello-remove for latest packages.
- Fixes #8544: Carry subscription-manager for EL5 in our client repos.
- Merge pull request #5177 from waldenraines/10140 ([email protected])
- Fixes #10140: allow sync plans start date to be editable, BZ 1177901.
- Fixes #10132: Allow viewer role to view content dashboard.
- Merge pull request #5154 from ehelms/fixes-9818 ([email protected])
- fixes #10127 - remove dynflow stacktrace when unregistering, BZ 1208100
- Fixes #9818: Properly propogate enabled state for sync plans to Pulp.
- Merge pull request #5153 from jlsherrill/9951 ([email protected])
- Merge pull request #5173 from jlsherrill/9354 ([email protected])
- Merge pull request #5171 from ehelms/fixes-9929 ([email protected])
- fixes #9354 - fixing error with import_errata rake task ([email protected])
- Fixes #10006: Host collections can be listed on AK key page again.
- Merge pull request #5169 from cfouant/iso-repos ([email protected])
- Fixes #9915: Backend cleanup script handles uebercert and hypervisors.
- Fixes #9929: Errata parameter was improperly named for repositories.
- Merge pull request #5141 from cfouant/registration-hint ([email protected])
- Merge pull request #5136 from cfouant/hide-x-when-nil ([email protected])
- Merge pull request #5133 from cfouant/override-ak-values ([email protected])
- Merge pull request #5166 from jlsherrill/10012 ([email protected])
- fixes #10028 - Fixes issue with enabling non-yum repos ([email protected])
- fixes #9951 - fixing package update during inc update ([email protected])
- Merge pull request #5150 from waldenraines/9933 ([email protected])
- Merge pull request #5165 from waldenraines/10011 ([email protected])
- Merge pull request #5157 from ehelms/fixes-9968 ([email protected])
- fixes #10012 - properly display conent host tasks ([email protected])
- Fixes #10011: fix long URI error when applying errata BZ 1208678.
- fixes #9984 - remove required flag from DELETE /subscriptions apipie
- Fixes #9933: use correct param for search BZ1205855. ([email protected])
- Merge pull request #5112 from jlsherrill/9786 ([email protected])
- Merge pull request #5152 from jlsherrill/9935 ([email protected])
- fixes #9786 - fixing searching and adding pagination to hosts errata
- Merge pull request #5161 from ehelms/refs-9979 ([email protected])
- Fixes #9992: fix no rows message on errata CH page BZ 1208216.
- Refs #9979: Other tests were not setting User.current when they should.
- Merge pull request #5156 from ehelms/fixes-9979 ([email protected])
- Merge pull request #5155 from parthaa/race ([email protected])
- Merge pull request #5143 from parthaa/cv-assoc ([email protected])
- Fixes #9968: Remove unused kill commands and cleanup script.
- Fixes #9978 - Sets an env content id correctly in cp ([email protected])
- Fixes #9986: Lock 'logging' gem to 1.X ([email protected])
- Merge pull request #5147 from thomasmckay/9922-typo ([email protected])
- Fixes #9979: Set User.current in Organization spec tests.
- Merge pull request #5149 from waldenraines/9927 ([email protected])
- fixes #9935 - pass correct id to install errata for inc updates
- fixes #9923 - replaced Author column with Description in cv versions
- Fixes #9934: do not refresh errata on initial load BZ 1206704.
- Fixes #9927: add missing no row messages, BZ 1206611. ([email protected])
- Merge pull request #5129 from ehelms/fixes-9866 ([email protected])
- Merge pull request #5145 from waldenraines/9913 ([email protected])
- fixes #9922 - typo in subscription-products.html ([email protected])
- Merge pull request #5146 from jlsherrill/9914 ([email protected])
- fixes #9889 - hides delete option when values are nil, BZ1186514
- Merge pull request #5142 from jlsherrill/9899 ([email protected])
- fixes #9914 - fixing uninitialized constant error on incremental update
- Fixes #9913: ensure unique count on errata CH counts, BZ1206329.
- Merge pull request #5140 from stbenjam/8447 ([email protected])
- Merge pull request #5130 from ehelms/fixes-9872 ([email protected])
- Fixes #9902 - Updated incorrect cv association ([email protected])
- Merge pull request #5137 from daviddavis/temp/20150324165507
- fixes #9899 - reindex all org subscriptions during manifest destroy
- Fixes #9866: Properly remove Pulp sync schedule from products.
- Merge pull request #5135 from waldenraines/9887 ([email protected])
- Fixes #9890 - Add content_view_id to systems API ([email protected])
- fixes #9898 - Activation Key hint more explicit in registration page,
BZ1201425 ([email protected])
- fixes #9876 - Adds product content override values to act key API, BZ1180282
- refs #8477 - remove defaulting of foreman templates ([email protected])
- Merge pull request #5021 from daviddavis/temp/20150217164258
- Fixes #9887: remove search on activation key show, BZ1204929.
- fixes #9883 - making auto attach run after consumer update
- refs #9628 - change prior to prior_id, BZ1189478 ([email protected])
- Merge pull request #5122 from waldenraines/9839 ([email protected])
- Fixes #9872: Properly destroy systems that are of type Hypervisor.
- Merge pull request #5117 from komidore64/bz1076568 ([email protected])
- Merge pull request #5110 from daviddavis/temp/20150313172814
- Merge pull request #5123 from jlsherrill/9478 ([email protected])
- Fixes #9839: show no rows message if table isn't working BZ 1203851.
- Merge pull request #5120 from jlsherrill/9802 ([email protected])
- fixes #9478 - update system env and cv in candlepin on cv remove
- fixes #9802 - convert system bulk errata action to dynflow
- Fixes #9838 - additional pkgs for .30 qpid ([email protected])
- Merge pull request #5116 from waldenraines/9796 ([email protected])
- Merge pull request #5118 from jlsherrill/9799 ([email protected])
- Fixes #9423 - Fix updating of docker upstream name ([email protected])
- Merge pull request #5107 from parthaa/cv-version ([email protected])
- Fixes #9755 - Adding docker_images method to cvv ([email protected])
- fixes #9799 - changing structure of incremental update around composites
- Fixes #9069 - support mrg31 ([email protected])
- Fixes #9796: fix translations for subscription loading screens.
- Merge pull request #5109 from jlsherrill/9750 ([email protected])
- Merge pull request #4375 from mbacovsky/4478_apipie_setup
- fixes #9798 - don't plan CVPE deletion if this is the default version,
BZ1076568 ([email protected])
- Merge pull request #5115 from waldenraines/9608 ([email protected])
- Merge pull request #5094 from lzap/katello-debug-symlink-8710
- Merge pull request #5113 from cfouant/UI-tool-tip ([email protected])
- Merge pull request #5114 from thomasmckay/9792-modal ([email protected])
- Fixes #9608: correct repository count, BZ 1197836. ([email protected])
- Merge pull request #5090 from parthaa/repo-url-change ([email protected])
- fixes #9792 - unregister content host UI modal blank ([email protected])
- Merge pull request #5084 from stbenjam/9664 ([email protected])
- fixes #9790 - Adds tool-tip to actkey UI upon env selection
- Merge pull request #5111 from waldenraines/9783 ([email protected])
- Merge pull request #5098 from jlsherrill/9722 ([email protected])
- Fixes #9783: ensure errata on dashboard are unique, BZ 1187704.
- Merge pull request #5106 from thomasmckay/9739-prod-perm
- Refs #4478 - API localization - Apipie setup moved
- Merge pull request #5108 from waldenraines/9737 ([email protected])
- Fixes #9737: fix CH filter for incremental update, BZ 1200441.
- fixes #9750 - always reindex errata packages ([email protected])
- Merge pull request #5100 from waldenraines/9697 ([email protected])
- Merge pull request #5102 from waldenraines/9731 ([email protected])
- Merge pull request #5077 from parthaa/containers ([email protected])
- fixes #9722 - recognize and show errors on host content actions
- Merge pull request #5103 from ehelms/fixes-9732 ([email protected])
- Merge pull request #5104 from ehelms/fixes-9735 ([email protected])
- Fixes #9741 - Fixed a puppet module count error in a CVV ([email protected])
- fixes #9739 - replace reference to delete_products w/ destroy_products
permission ([email protected])
- Merge pull request #5101 from waldenraines/9730 ([email protected])
- Fixes #9730: show message when no CV versions exist, BZ1201410.
- Merge pull request #5082 from waldenraines/9658 ([email protected])
- Fixes #9658: correct CH count when applying errata, BZ1198815.
- Fixes #9735: Fix package/puppet module incremental update.
- Fixes #9732: Incorrect apiepie docs for incremental update.
- Fixes #9731: show success/error messages when updating filter, BZ1201406.
- Fixes #9697: hide confirmation after bulk action or cancel, BZ 1199584.
- Refs #9518, #9310 - Create containers in API using katello repos
- Merge pull request #5053 from ehelms/fixes-8570 ([email protected])
- Merge pull request #5064 from ehelms/fixes-9568 ([email protected])
- Merge pull request #5055 from jlsherrill/9566 ([email protected])
- Merge pull request #5059 from jlsherrill/9577 ([email protected])
- Fixes #9707: Cleanup requirement on rubygems-devel. ([email protected])
- fixes #9566 - only destroy repo in finalize for direct repo deletes
- Merge pull request #5087 from ehelms/fixes-9685 ([email protected])
- Refs #8710 - katello-debug script is no longer a symlink
- Merge pull request #5093 from waldenraines/9698 ([email protected])
- Fixes #9698: use correct styling for association tables, BZ 1199626.
- Merge pull request #5091 from thomasmckay/9681-content-override
- Fixes #9586: Content view comparison will provide results again.
- Merge pull request #5050 from ehelms/fixes-9554 ([email protected])
- Merge pull request #5085 from waldenraines/9670 ([email protected])
- Merge pull request #5067 from waldenraines/9583 ([email protected])
- fixes #9681 - simplify presented content override choices
- Merge pull request #5086 from thomasmckay/7354-manifest-perm
- Fixes #9688 - Uses cdn url scheme for docker repo feeds ([email protected])
- Fixes #9583: improve repository deletion responses BZ 1166365.
- Fixes #9685: Allow searching on capital letters for Packages in CS.
- Merge pull request #5079 from jlsherrill/9647 ([email protected])
- Fixes #8570: Show modal dialog before deletion. ([email protected])
- Merge pull request #5069 from stbenjam/8172-self ([email protected])
- Merge pull request #5061 from waldenraines/9580 ([email protected])
- Merge pull request #5000 from steveloranz/8689 ([email protected])
- Fixes #9580: fix N+1 queries on activation key list, BZ 1196742.
- fixes #7354 - corrected state permission for import manifest
- Fixes #9670: show applicable errata message on CH errata page, BZ1194773.
- fixes #9664 - Add links to sync errata mail header ([email protected])
- Merge pull request #5037 from stbenjam/9502-9503 ([email protected])
- Merge pull request #5078 from parthaa/hide-docker-content ([email protected])
- Merge pull request #5081 from jlsherrill/9637-2 ([email protected])
- refs #9637 - add python-amqp to client repos ([email protected])
- Merge pull request #5080 from thomasmckay/9646-facts-update
- fixes #9647 - speed up puppet class import ([email protected])
- Fixes #8689 - scoped search for host collection ([email protected])
- fixes #9646 - call dynflow to update facts sent via rhsm and virt-who
- Fixes #9610 - Docker Content now hidden for composite cv ([email protected])
- Merge pull request #5006 from thomasmckay/9360-host-collections
- Merge pull request #5068 from waldenraines/9608 ([email protected])
- Merge pull request #4961 from ares/networking_provisioning_template
- Merge pull request #5076 from jlsherrill/9637 ([email protected])
- Merge pull request #5071 from jlsherrill/9626 ([email protected])
- fixes #9637 - adding qpid-proton-c to client repos ([email protected])
- fixes #9360 - set feature flag host collection actions
- Merge pull request #5012 from ares/networking_provisioning_image
- Merge pull request #5074 from jlsherrill/9629 ([email protected])
- fixes #9629 - fix env delete, as it no longer needs indexing
- Fixes #9511: fix typo on manifest update page. ([email protected])
- fixes #9626 - sort package names on incremental update task details
- Merge pull request #5028 from thomasmckay/9422-24hour
- Merge pull request #5070 from jlsherrill/9622 ([email protected])
- Merge pull request #5065 from daviddavis/temp/20150227164150
- Merge pull request #5058 from jlsherrill/inherit ([email protected])
- fixes #9622 - remove unused product rabl attribute ([email protected])
- refs #8175 - require qpid-dispatch-router ([email protected])
- Merge pull request #5063 from jlsherrill/9585 ([email protected])
- Merge pull request #5066 from jlsherrill/remove_reloading
- Merge pull request #5062 from waldenraines/9582 ([email protected])
- fixes #9587 - remove model reloading from tests ([email protected])
- fixes #9462,#9557,#9556 - various inherited hostgroup issues
- Fixes #9608 add repository/puppet module to CV components BZ 1197836.
- Fixes #9582: display content tab after content view is loaded BZ1196720.
- fixes #9577 - fixing host single and bulk delete ([email protected])
- Fixes #9344 - Changing descriptions to text fields BZ1177158
- fixes #9585 - speed up enabling redhat repos ([email protected])
- Merge pull request #5060 from ehelms/fixes-9579 ([email protected])
- Merge pull request #5051 from jlsherrill/9521 ([email protected])
- fixes #9502, #9503 - verify errata exist before application
- Merge pull request #5039 from stbenjam/8175 ([email protected])
- Fixes #9579: Limit bastion to less than 1.0.0 ([email protected])
- Merge pull request #5031 from parthaa/cdn ([email protected])
- Merge pull request #5052 from ehelms/fixes-8964 ([email protected])
- Merge pull request #5001 from mccun934/20150211-0930 ([email protected])
- Merge pull request #5056 from ehelms/fixes-9376 ([email protected])
- Merge pull request #5054 from waldenraines/9564 ([email protected])
- Fixes #7796 - Enable docker repos from the CDN ([email protected])
- Fixes #8964: Show repository count for composite content views.
- Fixes #9345: fix content view promotion in IE, BZ1168457. ([email protected])
- Fixes #9376: Calculate next_sync time properly based on UTC.
- Fixes #9564: limit components rabl to fix N+1 queries, BZ 1177609.
- fixes #9521 - activate and deactivate pulp nodes ([email protected])
- Fixes #9534: fix N+1 queries on content view index. ([email protected])
- Fixes #9554: Fix broken package display on content search.
- Merge pull request #5002 from cfouant/refactor-content-override
- Merge pull request #5043 from cfouant/refactor-autoattach
- Merge pull request #5049 from jlsherrill/8175 ([email protected])
- refs #8175 - add new proton/dispatcher packages to comps
- Merge pull request #5048 from daviddavis/temp/20150224171725
- fixes #8728, #8756 - use capsule RPM for registering a content host
- Automatic commit of package [katello] release [2.3.0-1].
- Update katello to 2.3.0 ([email protected])
- Fixes #9539 - Remove unused erroneous file ([email protected])
- fixes #9405 - Attaches custom products when registering with activation key
- refs #8175 - add qpid dispatch router to services list ([email protected])
- fixes #8956, #9337 - remove unused scripts and files from specfile
- fixes #9422 - limit 24 hour guest subscription visibility
- fixes #8892, #9340 - Validates content label and override value, BZ1173723,
BZ1187750 ([email protected])
- Fixes #9400 - configure networking in finish template ([email protected])
- Fixes #9132 - use networking snippet during provisioning ([email protected])
- refs #8861 - adding layout_helper to use trunc with tooltip helper
* Mon Jul 06 2015 Stephen Benjamin <[email protected]>
- Merge pull request #5318 from jlsherrill/10901 ([email protected])
- Merge pull request #5330 from iNecas/limit-foreman-tasks ([email protected])
- adding myself to contrib ([email protected])
- Refs #10962 - limit foreman tasks in rpm specs to < 0.7.0 ([email protected])
- Merge pull request #5312 from iNecas/issue/10830 ([email protected])
- Merge pull request #5325 from komidore64/bz1202050 ([email protected])
- Fixes #10830 - Humanized state description for Pulp and Candlepin async
actions ([email protected])
- Merge pull request #5307 from johnpmitsch/errata_search
- fixes #10934 - per-page/page options for puppet-module list, BZ1202050
- Merge pull request #5321 from thomasmckay/10903 ([email protected])
- Merge pull request #5294 from jlsherrill/scoped_repo ([email protected])
- Merge pull request #5316 from jlsherrill/10725-refs ([email protected])
- Fixes #10904: fix errata CH selection, BZ 1233901. ([email protected])
- fixes #10903 - remove reference to non-existent methods
- Merge pull request #5308 from waldenraines/10705 ([email protected])
- Fixes #10705: filter out non-installable Systems BZ1228292.
- fixes #10901 - skip all errors on sync tasks ([email protected])
- Merge pull request #5314 from cfouant/host-content ([email protected])
- Merge pull request #5317 from jlsherrill/10886 ([email protected])
- fixes #8690 - converting repository to scoped search ([email protected])
- fixes #10886 - adding more conditions for readable repos
- Merge pull request #5220 from ehelms/fixes-8693 ([email protected])
- Merge pull request #5255 from jlsherrill/puppet_env ([email protected])
- Fixes #8693: Convert content view puppet module to scoped search.
- refs #10725 - run ping check as anonymous admin ([email protected])
- fixes #10459,#10435 - do not create a puppet env for cvs with no modules
- Fixes #10824 - Refactoring errata index to show available errata using a url
parameter. This is part of the conversion to scoped search for the
filter_rules. By using a url parameter, the available errata is shown using
the index of errata, which will make scoped search easier to implement.
- fixes #10871 - Loads product content tab on content host, BZ1230782
- Merge pull request #5309 from cfouant/pulp-info ([email protected])
- Fixes #10857: Ensure DestroyMedium filename and action name are the same.
- Merge pull request #5305 from waldenraines/10827 ([email protected])
- Fixes #10827: replace usages of deprecated bst-infinite-scroll.
- Merge pull request #5303 from daviddavis/temp/20150615142141
- fixes #10536 - changes 404 exceptions from error to info, BZ1136081
- Merge pull request #5287 from ehelms/fixes-10732 ([email protected])
- Fixes #10822 - Don't clean up env content during CV remove
- Merge pull request #5247 from ehelms/fixes-10601 ([email protected])
- Merge pull request #5302 from jlsherrill/10820 ([email protected])
- fixes #10820 - collect tasks dump with foreman-debug ([email protected])
- Merge pull request #5301 from ehelms/fixes-10810 ([email protected])
- Merge pull request #5300 from ehelms/fixes-10809 ([email protected])
- refs #7162 - fixing capsule sync timeout ([email protected])
- Merge pull request #5283 from stbenjam/10735 ([email protected])