Project

Profile

Help

Issue #2374

Updated by bmbouter over 7 years ago

If you want to sync centos6 and skip syncing distribution, rpm, and drpm content you would probably do: 

 <pre> 
 pulp-admin rpm repo create --repo-id centos6 --feed http://mirror.centos.org/centos/6/os/x86_64/ --skip=rpm,drpm,distribution 
 pulp-admin rpm repo sync run --repo-id centos6 
 </pre> 

 When the sync is running you'll see that it syncs distributions even though the skip command specified not to. 

 Note also that the imports config does contain: 
 <pre> 
         "config": { 
             "feed": "http://download.devel.redhat.com/released/RHEL-6/6.0/Server/x86_64/os/", 
             "type_skip_list": [ 
                 "rpm", 
                 "drpm", 
                 "distribution" 
             ] 
         }, 
 </pre>

Back