app/services/katello/pulp3/repository/apt.rb in katello-4.1.0.rc1.1 vs app/services/katello/pulp3/repository/apt.rb in katello-4.1.0.rc2
- old
+ new
@@ -25,11 +25,10 @@
def publication_options(repository_version)
ss = api.signing_services_api.list(name: SIGNING_SERVICE_NAME).results
popts = super(repository_version)
popts.merge!(
{
- # structured is not necessary for subscription-manager
- #structured: true, # publish real suites (e.g. 'stable')
+ 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