I am running it on Centos 7 and all 1180ish updates show up for me.
Thanks @mattware . What are you installing in CentOS 7 before NetSUSLP? I use a minimal install and have the same problem in CentOS 6 and 7.
@zmkaylor I didn't do anything other than fully update CentOS before installing. I did also make a change to php.conf after installing so that I could select all updates, but other than that no changes. Also using the minimal install.
To troubleshoot this problem I followed the instructions in reposado_preferences.txt and enabled logging by adding
<key>RepoSyncLogFile</key>
<string>/var/log/reposado_sync.log</string>
to /var/lib/reposado/preferences.plist
Then I ran another sync and in the reposado log I came across:
Nov 12 14:04:29 Building index-mountainlion-lion-snowleopard-leopard.merged-1_CCS.sucatalog...
Nov 12 14:04:29 Could not replicate https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog: Error 59: Unknown cipher in list: HIGH
Nov 12 14:04:29 Could not replicate https://swscan.apple.com/content/catalogs/others/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog: Error 59: Unknown cipher in list: HIGH
Nov 12 14:04:29 Could not replicate https://swscan.apple.com/content/catalogs/others/index-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog: Error 59: Unknown cipher in list: HIGH
Nov 12 14:04:29 repo_sync run ended
According to this post, RedHat/CentOS's curl is compiled against NSS instead of OpenSSL and it doesn't recognize the parameter 'High' so I added the options below to /var/lib/reposado/preferences.plist to override the default SSL ciphers.
<key>AdditionalCurlOptions</key>
<array>
<string>ciphers = "rsa_aes_128_sha,rsa_aes_256_sha,rsa_3des_sha"</string>
</array>
Now it appears to be working without any issue. I'm not sure why I had the trouble and others haven't, but I'm happy it's working again and thought I should document it here.
This is great- i had this exact issue when installing NetSUS on our CentOS box.
However, I'm still getting an error box on the client that says "Can't Load Data from the Update Server".
I followed the configuration doc, so I'm unsure why it can't communicate.