app/services/katello/pulp3/repository/apt.rb in katello-3.18.5 vs app/services/katello/pulp3/repository/apt.rb in katello-4.0.0.rc1
- old
+ new
@@ -25,10 +25,11 @@
def publication_options(repository_version)
ss = api.signing_services_api.list(name: SIGNING_SERVICE_NAME).results
popts = super(repository_version)
popts.merge!(
{
- structured: true, # publish real suites (e.g. 'stable')
+ # structured is not necessary for subscription-manager
+ #structured: true, # publish real suites (e.g. 'stable')
simple: true # publish all into 'default'-suite
}
)
popts[:signing_service] = ss[0].pulp_href if ss && ss.length == 1
popts